librespot/.travis.yml

20 lines
356 B
YAML
Raw Normal View History

2015-12-30 19:11:29 +00:00
language: rust
rust:
- stable
- beta
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:
2016-03-11 13:21:54 +00:00
- cargo build
- cargo build --features with-tremor
# Building without syntex only works on nightly
- if [[ $(rustc --version) == *"nightly"* ]]; then
2016-03-11 13:21:54 +00:00
cargo build --no-default-features;
fi