CI: Add caching
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
82be62678a
commit
27b3f43261
1 changed files with 8 additions and 0 deletions
|
@ -7,9 +7,17 @@ variables:
|
||||||
|
|
||||||
.stable:
|
.stable:
|
||||||
image: rust:latest
|
image: rust:latest
|
||||||
|
cache:
|
||||||
|
key: stable
|
||||||
|
paths:
|
||||||
|
- target/
|
||||||
|
|
||||||
.nightly:
|
.nightly:
|
||||||
image: rustlang/rust:nightly
|
image: rustlang/rust:nightly
|
||||||
|
cache:
|
||||||
|
key: nightly
|
||||||
|
paths:
|
||||||
|
- target/
|
||||||
|
|
||||||
.build:
|
.build:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
Loading…
Reference in a new issue