zefyr

.travis.yml 569B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. language: dart
  2. dart:
  3. - dev
  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
  14. cache:
  15. directories:
  16. - $HOME/.pub-cache
  17. env:
  18. # - FLUTTER_VERSION=beta
  19. - FLUTTER_VERSION=dev
  20. matrix:
  21. allow_failures:
  22. - env: FLUTTER_VERSION=dev
  23. before_script:
  24. - pwd
  25. - git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
  26. - ./flutter/bin/flutter doctor
  27. script:
  28. - pwd
  29. - ./tool/travis.sh notus
  30. - ./tool/travis.sh zefyr
  31. - bash <(curl -s https://codecov.io/bash)