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