mirror of
https://github.com/rust-unofficial/awesome-rust
synced 2024-11-15 00:27:39 +00:00
19 lines
No EOL
584 B
YAML
19 lines
No EOL
584 B
YAML
language: rust
|
|
script: cargo run
|
|
|
|
env:
|
|
global:
|
|
- RUST_LOG=warn
|
|
|
|
# Cache hints based off of https://gist.github.com/jkcclemens/000456ca646bd502cac0dbddcb8fa307
|
|
cache:
|
|
cargo: true
|
|
directories:
|
|
- $TRAVIS_BUILD_DIR/results # So we don't have to check all the things every time
|
|
before_cache:
|
|
- rm -rfv target/debug/incremental/awesome_rust-*
|
|
- rm -rfv target/debug/.fingerprint/awesome_rust-*
|
|
- rm -rfv target/debug/deps/awesome_rust-*
|
|
- rm -rfv target/debug/awesome_rust.d
|
|
- rm -rfv target/debug/incremental/awesome_rust-*
|
|
- rm -rfv /home/travis/.cargo/registry/ |