-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.travis.yml
More file actions
66 lines (53 loc) · 1.13 KB
/
.travis.yml
File metadata and controls
66 lines (53 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
os:
- linux
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- fonts-noto
git:
depth: 3
env:
- FLUTTER_VERSION=stable
- FLUTTER_VERSION=beta
matrix:
allow_failures:
- env: FLUTTER_VERSION=beta
before_script:
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
- ./flutter/bin/flutter doctor
- chmod +x travis_script.sh
script:
- ./travis_script.sh
cache:
directories:
- $HOME/shared/.pub-cache
# notifications:
# email:
# brogdon+github@gmail.com
# Only building master means that we don't run two builds for each pull request.
branches:
only: [master]
# language: generic
# dist: xenial
# addons:
# apt:
# packages:
# - lib32stdc++6
# env:
# global:
# - FLUTTER_CHANNEL=stable
# before_install:
# cd gic_flutter
# install:
# - git clone https://github.com/flutter/flutter.git -b $FLUTTER_CHANNEL
# - export PATH="$PATH:`pwd`/flutter/bin/cache/dart-sdk/bin"
# - export PATH="$PATH:`pwd`/flutter/bin"
# - flutter doctor -v
# - flutter packages get
# cache:
# directories:
# - $HOME/.pub-cache