From 37dbfff7667d3516b58726bfa87bfd381b4da820 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sat, 23 Dec 2017 14:22:02 +0200 Subject: [PATCH] gitlab-ci: Do not cache rustfmt and clippy stuff. --- .gitlab-ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63dd6f7..f929e62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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/