From f6c1ceefe644a4bc07971df165de64a83a726ca4 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 9 Feb 2022 18:26:10 +0100 Subject: [PATCH 1/4] Revert "Revert me: Don't require `clippy` CI stage to succeed (#427)" This reverts commit b30c3aeda44285d672190fc1a73c2cfefc1ae1ab. --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a5e09fed..aa2b90ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,7 +78,6 @@ clippy: <<: *docker-env script: - cargo clippy --verbose --all-targets --all-features -- -D warnings; - allow_failure: true #### stage: test (all features) -- GitLab From d55ff33be3cdd09c7e76b658b36ac8e68093d3d4 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 9 Feb 2022 18:26:22 +0100 Subject: [PATCH 2/4] Set fixed nightly --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa2b90ab..23bc299f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,6 +36,8 @@ workflow: .docker-env: &docker-env image: "${CI_IMAGE}" before_script: + - rustup override set nightly-2022-01-21 + - rustup update - cargo -vV - rustc -vV - rustup show -- GitLab From 1621a0b92dd3efbc96fc3129702cb4655454ee8f Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 9 Feb 2022 18:31:25 +0100 Subject: [PATCH 3/4] Remove `rustup update` --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 23bc299f..ca7c686c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,7 +37,6 @@ workflow: image: "${CI_IMAGE}" before_script: - rustup override set nightly-2022-01-21 - - rustup update - cargo -vV - rustc -vV - rustup show -- GitLab From cf6c8f6977db00721bfadc452220fd9ffbd60277 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 9 Feb 2022 18:32:58 +0100 Subject: [PATCH 4/4] Remove `rustup override` --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca7c686c..aa2b90ab 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,6 @@ workflow: .docker-env: &docker-env image: "${CI_IMAGE}" before_script: - - rustup override set nightly-2022-01-21 - cargo -vV - rustc -vV - rustup show -- GitLab