Allow failure on certain jobs

Former-commit-id: b1cf4ef1d09d97f9fadbe8ca680703638c881d7f
This commit is contained in:
Forest 2019-04-27 07:17:11 -04:00
parent 5c9447f49c
commit d46787f2c5

View File

@ -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