.travis.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. language: rust
  2. rust:
  3. - 1.33.0
  4. - stable
  5. - beta
  6. - nightly
  7. # Need to cache the whole `.cargo` directory to keep .crates.toml for
  8. # cargo-update to work
  9. cache:
  10. directories:
  11. - /home/travis/.cargo
  12. # But don't cache the cargo registry
  13. before_cache:
  14. - rm -rf /home/travis/.cargo/registry
  15. addons:
  16. apt:
  17. packages:
  18. - gcc-arm-linux-gnueabihf
  19. - libc6-dev-armhf-cross
  20. - libpulse-dev
  21. - portaudio19-dev
  22. - libasound2-dev
  23. - libsdl2-dev
  24. before_script:
  25. - rustup component add rustfmt
  26. - mkdir -p ~/.cargo
  27. - echo '[target.armv7-unknown-linux-gnueabihf]' > ~/.cargo/config
  28. - echo 'linker = "arm-linux-gnueabihf-gcc"' >> ~/.cargo/config
  29. - rustup target add armv7-unknown-linux-gnueabihf
  30. script:
  31. - cargo fmt --all -- --check
  32. - cargo build --locked --no-default-features
  33. - cargo build --locked --examples
  34. - cargo build --locked --no-default-features --features "with-tremor"
  35. - cargo build --locked --no-default-features --features "with-vorbis"
  36. - cargo build --locked --no-default-features --features "alsa-backend"
  37. - cargo build --locked --no-default-features --features "portaudio-backend"
  38. - cargo build --locked --no-default-features --features "pulseaudio-backend"
  39. - cargo build --locked --no-default-features --features "jackaudio-backend"
  40. - cargo build --locked --no-default-features --features "rodio-backend"
  41. - cargo build --locked --no-default-features --features "sdl-backend"
  42. - cargo build --locked --no-default-features --target armv7-unknown-linux-gnueabihf
  43. notifications:
  44. email: false
  45. webhooks:
  46. urls:
  47. - https://webhooks.gitter.im/e/780b178b15811059752e
  48. on_success: change # options: [always|never|change] default: always
  49. on_failure: always # options: [always|never|change] default: always
  50. on_start: never # options: [always|never|change] default: always