Skip to content
Snippets Groups Projects
Commit 7689e1f6 authored by Lars Bilke's avatar Lars Bilke
Browse files

[Jenkins] Ignore some warnings in Docs job.

parent cae113d9
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,10 @@ ...@@ -8,7 +8,10 @@
### Utilities ### Utilities
### Infrastructure: ### Infrastructure:
- ctest now works on Windows too by removing time-wrappers - ctest now works on Windows too by removing time-wrappers. #1480
- Moved to public Jenkins instance at jenkins.opengeosys.org. #1505
- Doxygen warnings parser in Jenkins will mark a build as unstable
if there are Doxygen warnings, #1585
### Fixes: ### Fixes:
......
...@@ -25,6 +25,9 @@ stage('Reports (Docs)') { ...@@ -25,6 +25,9 @@ stage('Reports (Docs)') {
keepAll: false, reportDir: 'build/docs', reportFiles: 'index.html', keepAll: false, reportDir: 'build/docs', reportFiles: 'index.html',
reportName: 'Doxygen']) reportName: 'Doxygen'])
step([$class: 'WarningsPublisher', canResolveRelativePaths: false, step([$class: 'WarningsPublisher', canResolveRelativePaths: false,
messagesPattern:
'.*ogs_file_.*,' +
'.*potential recursive class relation.*',
parserConfigurations: [[parserName: 'Doxygen', pattern: parserConfigurations: [[parserName: 'Doxygen', pattern:
'build/DoxygenWarnings.log']], unstableNewAll: '0']) 'build/DoxygenWarnings.log']], unstableNewAll: '0'])
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment