use cargo-sweep to clean up the cache every now and then
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
64efb0de27
commit
a1b16bd8e0
1 changed files with 36 additions and 0 deletions
|
@ -15,6 +15,7 @@ default:
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- lint
|
- lint
|
||||||
|
- cache-cleanup
|
||||||
- build
|
- build
|
||||||
- version
|
- version
|
||||||
- test
|
- test
|
||||||
|
@ -41,12 +42,22 @@ stages:
|
||||||
script:
|
script:
|
||||||
cargo build --no-default-features --locked --features="json $FEATURES"
|
cargo build --no-default-features --locked --features="json $FEATURES"
|
||||||
|
|
||||||
|
.cargo-cleanup:
|
||||||
|
extends: .cargo-build
|
||||||
|
stage: cache-cleanup
|
||||||
|
allow_failure: true
|
||||||
|
script:
|
||||||
|
- cargo install cargo-sweep
|
||||||
|
- cargo sweep -i
|
||||||
|
|
||||||
.cargo-test:
|
.cargo-test:
|
||||||
extends: .cargo-build
|
extends: .cargo-build
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
cargo test --no-default-features --locked --verbose --features="json $FEATURES"
|
cargo test --no-default-features --locked --verbose --features="json $FEATURES"
|
||||||
|
|
||||||
|
# LINT
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
stage: lint
|
stage: lint
|
||||||
script:
|
script:
|
||||||
|
@ -54,13 +65,37 @@ clippy:
|
||||||
- cargo clippy --version
|
- cargo clippy --version
|
||||||
- ./clippy.sh ci
|
- ./clippy.sh ci
|
||||||
|
|
||||||
|
# CACHE CLEANUP
|
||||||
|
cleanup-stable:
|
||||||
|
extends: .cargo-cleanup
|
||||||
|
|
||||||
|
cleanup-msrv:
|
||||||
|
extends: cleanup-stable
|
||||||
|
image: "rust:1.43.0"
|
||||||
|
cache:
|
||||||
|
key: msrv
|
||||||
|
paths:
|
||||||
|
- target
|
||||||
|
- .cargo
|
||||||
|
|
||||||
|
cleanup-nightly:
|
||||||
|
extends: cleanup-stable
|
||||||
|
image: "rustlang/rust:nightly"
|
||||||
|
cache:
|
||||||
|
key: nightly
|
||||||
|
paths:
|
||||||
|
- target
|
||||||
|
- .cargo
|
||||||
|
|
||||||
# BUILD
|
# BUILD
|
||||||
|
|
||||||
build-stable:
|
build-stable:
|
||||||
extends: .cargo-build
|
extends: .cargo-build
|
||||||
|
needs: ["cleanup-stable"]
|
||||||
|
|
||||||
build-msrv:
|
build-msrv:
|
||||||
extends: build-stable
|
extends: build-stable
|
||||||
|
needs: ["cleanup-msrv"]
|
||||||
image: "rust:1.43.0"
|
image: "rust:1.43.0"
|
||||||
cache:
|
cache:
|
||||||
key: msrv
|
key: msrv
|
||||||
|
@ -70,6 +105,7 @@ build-msrv:
|
||||||
|
|
||||||
build-nightly:
|
build-nightly:
|
||||||
extends: build-stable
|
extends: build-stable
|
||||||
|
needs: ["cleanup-nightly"]
|
||||||
image: "rustlang/rust:nightly"
|
image: "rustlang/rust:nightly"
|
||||||
cache:
|
cache:
|
||||||
key: nightly
|
key: nightly
|
||||||
|
|
Loading…
Reference in a new issue