.travis.yml 643 B

12345678910111213141516171819202122232425
  1. language: rust
  2. rust:
  3. - stable
  4. - beta
  5. - nightly
  6. addons:
  7. apt:
  8. packages:
  9. - libprotoc-dev
  10. - portaudio19-dev
  11. script:
  12. - cargo build --no-default-features --features "with-syntex"
  13. - cargo build --no-default-features --features "with-syntex with-tremor"
  14. - cargo build --no-default-features --features "with-syntex facebook"
  15. - cargo build --no-default-features --features "with-syntex portaudio-backend"
  16. # Building without syntex only works on nightly
  17. - if [[ $(rustc --version) == *"nightly"* ]]; then
  18. cargo build --no-default-features;
  19. fi
  20. matrix:
  21. allow_failures:
  22. - rust: nightly