librespot/.travis.yml

71 lines
2.1 KiB
YAML
Raw Normal View History

2015-12-30 19:11:29 +00:00
language: rust
rust:
- 1.40.0
- stable
- beta
2015-12-30 19:11:29 +00:00
- nightly
# Need to cache the whole `.cargo` directory to keep .crates.toml for
# cargo-update to work
cache:
directories:
- /home/travis/.cargo
# But don't cache the cargo registry
before_cache:
- rm -rf /home/travis/.cargo/registry
matrix:
# Performance tweak
fast_finish: true
# Ignore failures in nightly, not ideal, but necessary
allow_failures:
- rust: nightly
# Only run the formatting check for stable
include:
- name: 'Rust: format check'
rust: stable
install:
- rustup component add rustfmt
script:
- cargo fmt --verbose --all -- --check
2015-12-30 19:11:29 +00:00
addons:
apt:
packages:
- gcc-arm-linux-gnueabihf
- libc6-dev-armhf-cross
2016-12-31 13:30:01 +00:00
- libpulse-dev
- portaudio19-dev
2019-07-18 11:27:14 +00:00
- libasound2-dev
- libsdl2-dev
before_script:
- mkdir -p ~/.cargo
- echo '[target.armv7-unknown-linux-gnueabihf]' > ~/.cargo/config
- echo 'linker = "arm-linux-gnueabihf-gcc"' >> ~/.cargo/config
2017-03-26 11:24:48 +00:00
- rustup target add armv7-unknown-linux-gnueabihf
2016-04-23 15:01:02 +00:00
2016-01-02 00:05:26 +00:00
script:
- cargo build --locked --no-default-features
2019-11-08 08:58:43 +00:00
- cargo build --locked --examples
- cargo build --locked --no-default-features --features "with-tremor"
- cargo build --locked --no-default-features --features "with-vorbis"
2019-07-18 11:27:14 +00:00
- cargo build --locked --no-default-features --features "alsa-backend"
- cargo build --locked --no-default-features --features "portaudio-backend"
- cargo build --locked --no-default-features --features "pulseaudio-backend"
2019-07-18 11:27:14 +00:00
- cargo build --locked --no-default-features --features "jackaudio-backend"
- cargo build --locked --no-default-features --features "rodio-backend"
- cargo build --locked --no-default-features --features "sdl-backend"
- cargo build --locked --no-default-features --target armv7-unknown-linux-gnueabihf
2016-05-06 19:23:26 +00:00
notifications:
2018-01-28 17:53:24 +00:00
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/780b178b15811059752e
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always