Skip to content

Commit

Permalink
CI: Building docs warnings are turned into errors and make the build …
Browse files Browse the repository at this point in the history
…unstable
  • Loading branch information
henryborchers committed Oct 6, 2023
1 parent d231334 commit c067f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ pipeline {
}
stage('Building Sphinx Documentation'){
steps {
catchError(buildResult: 'SUCCESS', message: 'Error building documentation', stageResult: 'UNSTABLE') {
catchError(buildResult: 'UNSTABLE', message: 'Building documentation produced an error or a warning', stageResult: 'UNSTABLE') {
sh(
label: 'Building docs',
script: '''mkdir -p logs
Expand Down

0 comments on commit c067f46

Please sign in to comment.