| 123456789101112131415161718192021 |
- os:
- - linux
- sudo: false
- addons:
- apt:
- # Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
- sources:
- - ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
- packages:
- - libstdc++6
- - fonts-droid
- before_script:
- - ./scripts/travis_setup.sh
- - ./flutter/bin/flutter doctor
- script:
- - ./flutter/bin/flutter test --coverage
- after_success:
- - bash <(curl -s https://codecov.io/bash) -t $CODE_COV_TOKEN
- cache:
- directories:
- - $HOME/.pub-cache
|