Skip to content

Commit

Permalink
[Jenkins] Ignore netcdf warning on gcc gui job.
Browse files Browse the repository at this point in the history
Archive cppcheck.log.
  • Loading branch information
bilke committed Dec 6, 2019
1 parent 0dae74f commit 9c45a1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -226,14 +226,15 @@ pipeline {
always {
recordIssues enabledForFailure: true, filters: [
excludeFile('.*qrc_icons\\.cpp.*'),
excludeFile('ncGroup\\.h'),
excludeMessage('.*tmpnam.*')],
tools: [gcc4(name: 'GCC-GUI', id: 'gcc4-gui',
pattern: 'build/build*.log')],
unstableTotalAll: 1
recordIssues enabledForFailure: true,
tools: [cppCheck(pattern: 'build/cppcheck.log')]
}
success { archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt' }
success { archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt,build/cppcheck.log' }
}
}
// ********************* Docker-Conan-Debug ****************************
Expand Down

0 comments on commit 9c45a1e

Please sign in to comment.