librespot/.travis.yml

27 lines
703 B
YAML
Raw Normal View History

2015-12-30 19:11:29 +00:00
language: rust
rust:
- stable
- beta
- nightly-2016-03-17 # Last known to be working nightly
2015-12-30 19:11:29 +00:00
- nightly
addons:
apt:
packages:
- libprotoc-dev
2015-12-30 19:11:29 +00:00
- portaudio19-dev
2016-01-02 00:05:26 +00:00
script:
- cargo build --no-default-features --features "with-syntex"
- cargo build --no-default-features --features "with-syntex with-tremor"
- cargo build --no-default-features --features "with-syntex facebook"
- cargo build --no-default-features --features "with-syntex portaudio-backend"
# Building without syntex only works on nightly
- if [[ $TRAVIS_RUST_VERSION == *"nightly"* ]]; then
2016-03-11 13:21:54 +00:00
cargo build --no-default-features;
fi
2016-03-18 15:58:44 +00:00
matrix:
allow_failures:
- rust: nightly