zefyr

.travis.yml 732B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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
  14. cache:
  15. directories:
  16. - $HOME/.pub-cache
  17. #env:
  18. # - FLUTTER_VERSION=stable
  19. # - FLUTTER_VERSION=master
  20. matrix:
  21. include:
  22. - name: "Master build"
  23. if: branch = flutter-master
  24. env: FLUTTER_VERSION=master
  25. - name: "Stable build"
  26. if: branch != flutter-master
  27. env: FLUTTER_VERSION=stable
  28. before_script:
  29. - pwd
  30. - git clone https://github.com/flutter/flutter.git -b $FLUTTER_VERSION
  31. - ./flutter/bin/flutter doctor
  32. script:
  33. - pwd
  34. - ./tool/travis.sh notus
  35. - ./tool/travis.sh zefyr
  36. - bash <(curl -s https://codecov.io/bash)