zefyr

.travis.yml 500B

123456789101112131415161718192021222324252627282930313233343536
  1. language: dart
  2. dart:
  3. - stable
  4. os:
  5. - linux
  6. sudo: false
  7. addons:
  8. apt:
  9. sources:
  10. - ubuntu-toolchain-r-test
  11. packages:
  12. - libstdc++6
  13. - fonts-droid-fallback
  14. cache:
  15. directories:
  16. - $HOME/.pub-cache
  17. env:
  18. - FLUTTER_VERSION=stable
  19. before_script:
  20. - pwd
  21. - git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
  22. - ./flutter/bin/flutter doctor
  23. script:
  24. - pwd
  25. - ./tool/travis.sh notus
  26. - ./tool/travis.sh zefyr
  27. - bash <(curl -s https://codecov.io/bash)