mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
18 lines
335 B
YAML
18 lines
335 B
YAML
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libprotoc-dev
|
|
- portaudio19-dev
|
|
|
|
script:
|
|
- cargo build --verbose
|
|
# Building without syntex only works on nightly
|
|
- if [[ $(rustc --version) == *"nightly"* ]]; then
|
|
cargo build --no-default-features --verbose;
|
|
fi
|