.travis.yml 815 B

12345678910111213141516171819202122232425262728
  1. language: rust
  2. rust:
  3. - stable
  4. - beta
  5. - nightly-2016-03-17 # Last known to be working nightly
  6. - nightly
  7. addons:
  8. apt:
  9. packages:
  10. - libprotoc-dev
  11. - portaudio19-dev
  12. - libpulse-dev
  13. script:
  14. - cargo build --no-default-features --features "with-syntex"
  15. - cargo build --no-default-features --features "with-syntex with-tremor"
  16. - cargo build --no-default-features --features "with-syntex facebook"
  17. - cargo build --no-default-features --features "with-syntex portaudio-backend"
  18. - cargo build --no-default-features --features "with-syntex pulseaudio-backend"
  19. # Building without syntex only works on nightly
  20. - if [[ $TRAVIS_RUST_VERSION == *"nightly"* ]]; then
  21. cargo build --no-default-features;
  22. fi
  23. matrix:
  24. allow_failures:
  25. - rust: nightly