Skip to content

Commit

Permalink
[Jenkins] Added Doxygen ignore of false positive cite errors.
Browse files Browse the repository at this point in the history
Is fixed in Doxygen 1.8.12.
In Docker we have 1.8.11.

See #1585.
  • Loading branch information
bilke committed Nov 29, 2016
1 parent 0bce15a commit ff0e03b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
### Utilities
### 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

### Fixes:

Expand Down
5 changes: 4 additions & 1 deletion scripts/jenkins/docs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ stage('Reports (Docs)') {
keepAll: false, reportDir: 'build/docs', reportFiles: 'index.html',
reportName: 'Doxygen'])
step([$class: 'WarningsPublisher', canResolveRelativePaths: false,
messagesPattern: '.*ogs_file_.*,.*potential recursive class relation.*',
messagesPattern:
'.*ogs_file_.*,' +
'.*potential recursive class relation.*,' +
'.*cite command to .* does not have an associated number',
parserConfigurations: [[parserName: 'Doxygen', pattern:
'build/DoxygenWarnings.log']], unstableNewAll: '0'])
}
Expand Down

0 comments on commit ff0e03b

Please sign in to comment.