Showing
3 changed files
with
32 additions
and
0 deletions
ci/README.md
0 → 100644
ci/drive.sh
0 → 100644
travis.yaml
0 → 100644
| 1 | +language: bash | ||
| 2 | +os: | ||
| 3 | + - osx | ||
| 4 | +env: | ||
| 5 | + - FLUTTER_CHANNEL="stable" | ||
| 6 | + - FLUTTER_CHANNEL="master" | ||
| 7 | +sudo: false | ||
| 8 | +before_script: | ||
| 9 | + - cd .. | ||
| 10 | + - git clone https://github.com/flutter/flutter.git -b $FLUTTER_CHANNEL | ||
| 11 | + - export PATH=$PATH:$PWD/flutter/bin:$PWD/flutter/bin/cache/dart-sdk/bin | ||
| 12 | + - cd - | ||
| 13 | + - flutter doctor | ||
| 14 | +script: | ||
| 15 | + - set -e | ||
| 16 | + - ./scripts/drive.sh | ||
| 17 | +matrix: | ||
| 18 | + fast_finish: true | ||
| 19 | +cache: | ||
| 20 | + directories: | ||
| 21 | + - $HOME/.pub-cache |
-
Please register or login to post a comment