fluro/.travis.yml

36 lines
631 B
YAML
Raw Normal View History

2018-07-21 13:46:52 -04:00
language: dart
dart:
2018-07-21 14:01:24 -04:00
- dev
os:
- linux
sudo: false
2018-07-21 14:01:24 -04:00
env:
- FLUTTER_VERSION=dev
addons:
apt:
sources:
2018-07-21 14:01:24 -04:00
- ubuntu-toolchain-r-test
packages:
- libstdc++6
- fonts-droid
2018-07-21 14:01:24 -04:00
matrix:
allow_failures:
- env: FLUTTER_VERSION=dev
before_script:
2018-07-21 21:46:09 -04:00
- pwd
2018-07-21 14:01:24 -04:00
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
2018-07-21 21:46:09 -04:00
- export PATH=`pwd`/flutter/bin:`pwd`/flutter/bin/cache/dart-sdk/bin:$PATH
- flutter doctor
script:
2018-07-21 21:46:09 -04:00
- pwd
- ./flutter/bin/flutter test --coverage
after_success:
- bash <(curl -s https://codecov.io/bash) -t $CODE_COV_TOKEN
2018-07-21 14:01:24 -04:00
cache:
directories:
- $HOME/.pub-cache