.travis.yml 703 B

1234567891011121314151617181920212223242526
  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. script:
  13. - cargo build --no-default-features --features "with-syntex"
  14. - cargo build --no-default-features --features "with-syntex with-tremor"
  15. - cargo build --no-default-features --features "with-syntex facebook"
  16. - cargo build --no-default-features --features "with-syntex portaudio-backend"
  17. # Building without syntex only works on nightly
  18. - if [[ $TRAVIS_RUST_VERSION == *"nightly"* ]]; then
  19. cargo build --no-default-features;
  20. fi
  21. matrix:
  22. allow_failures:
  23. - rust: nightly