Skip to content
Snippets Groups Projects
Unverified Commit de9cc848 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by GitHub
Browse files

Merge pull request #2006 from bilke/jenkins-warnings

[Jenkins] Added warnings parser
parents edd899e7 bd202585
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,10 @@ pipeline {
post {
always {
publishReports { }
script {
warnings(canResolveRelativePaths: false,
consoleParsers: [[parserName: 'GNU C Compiler 4 (gcc)']])
}
}
failure {
dir('build') { deleteDir() }
......@@ -224,6 +228,9 @@ pipeline {
post {
always {
publishReports { }
warnings(canResolveRelativePaths: false,
consoleParsers: [[parserName: 'MSBuild']],
messagesPattern: '.*\\.conan.*')
}
failure {
dir('build') { deleteDir() }
......@@ -370,6 +377,8 @@ pipeline {
post {
always {
dir('build') { deleteDir() }
warnings(canResolveRelativePaths: false,
consoleParsers: [[parserName: 'Clang (LLVM based)']])
}
}
}
......@@ -390,6 +399,11 @@ pipeline {
}
}
} // end parallel
post {
always {
step([$class: 'AnalysisPublisher', unstableNewAll: '1'])
}
}
} // end stage master
}
}
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