.travis.yml 549 B

123456789101112131415161718192021
  1. os:
  2. - linux
  3. sudo: false
  4. addons:
  5. apt:
  6. # Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
  7. sources:
  8. - ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
  9. packages:
  10. - libstdc++6
  11. - fonts-droid
  12. before_script:
  13. - ./scripts/travis_setup.sh
  14. - ./flutter/bin/flutter doctor
  15. script:
  16. - ./flutter/bin/flutter test --coverage
  17. after_success:
  18. - bash <(curl -s https://codecov.io/bash) -t $CODE_COV_TOKEN
  19. cache:
  20. directories:
  21. - $HOME/.pub-cache