mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Allow failure on certain jobs
Former-commit-id: b1cf4ef1d09d97f9fadbe8ca680703638c881d7f
This commit is contained in:
parent
5c9447f49c
commit
d46787f2c5
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user