.travis.yml 460 B

12345678910111213141516171819
  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
  17. cache:
  18. directories:
  19. - $HOME/.pub-cache