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

[Jenkins] Added macOS Clang warning parsing.

parent e2d2d000
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ pipeline {
excludeFile('.*qrc_icons\\.cpp.*'), excludeFile('.*QVTKWidget.*')],
tools: [[pattern: 'build/build.log', name: 'GCC',
tool: [$class: 'GnuMakeGcc']]],
unstableTotalAll: 24
unstableTotalAll: 19
}
success {
dir('build/docs') { stash(name: 'doxygen') }
......@@ -294,15 +294,15 @@ pipeline {
'-DCMAKE_OSX_DEPLOYMENT_TARGET="10.13" '
}
build {
target = 'tests'
log = "build.log"
cmd_args = '-j $(( `sysctl -n hw.ncpu` - 2 ))'
}
build {
target = 'ctest'
target = 'tests'
cmd_args = '-j $(( `sysctl -n hw.ncpu` - 2 ))'
}
build {
target = 'package'
target = 'ctest'
cmd_args = '-j $(( `sysctl -n hw.ncpu` - 2 ))'
}
}
......@@ -310,6 +310,11 @@ pipeline {
post {
always {
publishReports { }
recordIssues enabledForFailure: true, filters: [
excludeFile('.*qrc_icons\\.cpp.*'), excludeFile('.*QVTKWidget.*')],
tools: [[pattern: 'build/build.log', name: 'Clang (macOS)',
tool: [$class: 'Clang']]],
unstableTotalAll: 3
}
success {
archiveArtifacts 'build/*.tar.gz,build/*.dmg,build/conaninfo.txt'
......
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