From b9128c9c4904c81ba1ff9f60298dd88ab1c733d1 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Thu, 20 Jan 2022 09:07:23 +0100 Subject: [PATCH 1/2] Purge cache --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa2b90ab..e476ac5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -85,6 +85,7 @@ test: stage: test <<: *docker-env script: + - rm -rf /ci-cache/cargo-contract/targets/master/ - cargo test --verbose --workspace --all-features test-new-project-template: -- GitLab From f22924ffa2081a2c749b63e7543aee0861383a1a Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Thu, 20 Jan 2022 09:10:45 +0100 Subject: [PATCH 2/2] Purge cache --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e476ac5c..354937ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,6 +77,7 @@ clippy: stage: check <<: *docker-env script: + - rm -rf /ci-cache/cargo-contract/targets/master/ - cargo clippy --verbose --all-targets --all-features -- -D warnings; #### stage: test (all features) @@ -85,7 +86,6 @@ test: stage: test <<: *docker-env script: - - rm -rf /ci-cache/cargo-contract/targets/master/ - cargo test --verbose --workspace --all-features test-new-project-template: -- GitLab