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