From d46787f2c5179a37e56e022b235e576aead9e8f2 Mon Sep 17 00:00:00 2001 From: Forest Date: Sat, 27 Apr 2019 07:17:11 -0400 Subject: [PATCH] Allow failure on certain jobs Former-commit-id: b1cf4ef1d09d97f9fadbe8ca680703638c881d7f --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca4f0beaa4..46737af5bf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -73,6 +73,8 @@ benchmarktests: - docker script: - cargo bench + allow_failure: true + ############# # POST-BUILD @@ -85,6 +87,7 @@ clean-code: - docker script: - cargo fmt --all -- --check + allow_failure: true coverage: stage: post-build @@ -93,6 +96,7 @@ coverage: - docker script: - cargo tarpaulin --skip-clean --all || echo "There is a problem in tarpaulin which sometimes fails" + allow_failure: true clippy: stage: post-build @@ -101,6 +105,7 @@ clippy: - docker script: - cargo clippy --all -- -D clippy || echo "This job is disabled, because we are not activly using it now, so we dont want to see yellow failed partly" + allow_failure: true ############# # EXECUTABLE