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

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
1 changed files with 3 additions and 1 deletions

View File

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