docs failure should not fail the whole build
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
Rust/spacepackets/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2023-09-18 18:00:14 +02:00
parent a6bced7983
commit be37c15478
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -20,9 +20,11 @@ pipeline {
} }
stage('Docs') { stage('Docs') {
steps { steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'cargo +nightly doc --all-features' sh 'cargo +nightly doc --all-features'
} }
} }
}
stage('Rustfmt') { stage('Rustfmt') {
steps { steps {
sh 'cargo fmt --all --check' sh 'cargo fmt --all --check'