.travis.yml 399 B

1234567891011121314151617181920212223242526272829303132
  1. language: rust
  2. matrix:
  3. include:
  4. # MSRV
  5. - env: TARGET=x86_64-unknown-linux-gnu
  6. rust: 1.30.0
  7. - env: TARGET=x86_64-unknown-linux-gnu
  8. rust: stable
  9. before_install: set -e
  10. install:
  11. - sh ci/install.sh
  12. script:
  13. - sh ci/script.sh
  14. after_script: set +e
  15. cache: cargo
  16. branches:
  17. only:
  18. - master
  19. - staging
  20. - trying
  21. notifications:
  22. email:
  23. on_success: never