gitlab-ci: Do not cache rustfmt and clippy stuff.

This commit is contained in:
Jordan Petridis 2017-12-23 14:22:02 +02:00
parent f9d17afad3
commit 37dbfff766
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6

View File

@ -51,10 +51,6 @@ rustfmt:
- rustc --version && cargo --version
- cargo install rustfmt-nightly --force
- cargo fmt --all -- --write-mode=diff
cache:
paths:
- target/
- cargo/
# Configure and run clippy on nightly
# Only fails on errors atm.
@ -65,7 +61,3 @@ clippy:
- rustc --version && cargo --version
- cargo install clippy --force
- cargo clippy --all
cache:
paths:
- target/
- cargo/