mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Only cache the .cargo
directory on Travis
This commit is contained in:
parent
08c239319c
commit
a9446c3e01
1 changed files with 8 additions and 11 deletions
19
.travis.yml
19
.travis.yml
|
@ -5,18 +5,15 @@ rust:
|
||||||
- beta
|
- beta
|
||||||
- nightly
|
- nightly
|
||||||
|
|
||||||
cache: cargo
|
# Need to cache the whole `.cargo` directory to keep .crates.toml for
|
||||||
# Reduce cache bloat
|
# cargo-update to work
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- /home/travis/.cargo
|
||||||
|
|
||||||
|
# But don't cache the cargo registry
|
||||||
before_cache:
|
before_cache:
|
||||||
- rm -rfv "$TRAVIS_HOME/.cargo/registry/src"
|
- rm -rf /home/travis/.cargo/registry
|
||||||
- rm -rfv target/debug/incremental/{librespot,build_script_build}-*
|
|
||||||
- rm -rfv target/debug/.fingerprint/librespot-*
|
|
||||||
- rm -rfv target/debug/build/librespot-*
|
|
||||||
- rm -rfv target/debug/deps/liblibrespot-*
|
|
||||||
- rm -rfv target/debug/deps/librespot-*
|
|
||||||
- rm -rfv target/debug/{librespot,liblibrespot}.d
|
|
||||||
- rm -rfv target/debug/incremental/{build_script_build,librespot,librespot_core,librespot_connect,librespot_audio,librespot_metadata,librespot_playback,librespot_player,librespot_protocol}-*
|
|
||||||
- cargo clean -p librespot -p librespot-core -p librespot-connect -p librespot-audio -p librespot-metadata -p librespot-playback
|
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
|
|
Loading…
Reference in a new issue