librespot/.travis.yml
Paul Lietar ac5b34927f Support using tremor instead of libvorbis for audio decoding.
Tremor is a fixed point / integer only Vorbis decoder.
This should improve playback performances on embedded platforms lacking
hardware floating point support.
2016-03-13 15:15:15 +00:00

19 lines
356 B
YAML

language: rust
rust:
- stable
- beta
- nightly
addons:
apt:
packages:
- libprotoc-dev
- portaudio19-dev
script:
- cargo build
- cargo build --features with-tremor
# Building without syntex only works on nightly
- if [[ $(rustc --version) == *"nightly"* ]]; then
cargo build --no-default-features;
fi