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

[Jenkins] Removed obsolete log parser stage.

parent 685d0ff8
No related branches found
No related tags found
No related merge requests found
...@@ -269,7 +269,7 @@ pipeline { ...@@ -269,7 +269,7 @@ pipeline {
excludeFile('.*thread.hpp')], excludeFile('.*thread.hpp')],
tools: [[pattern: 'build/build.log', name: 'MSVC', tools: [[pattern: 'build/build.log', name: 'MSVC',
tool: [$class: 'MsBuild']]], tool: [$class: 'MsBuild']]],
unstableTotalAll: 6 unstableTotalAll: 4
} }
success { success {
archiveArtifacts 'build/*.zip,build/conaninfo.txt' archiveArtifacts 'build/*.zip,build/conaninfo.txt'
...@@ -323,22 +323,6 @@ pipeline { ...@@ -323,22 +323,6 @@ pipeline {
} }
} // end parallel } // end parallel
} // end stage Build } // end stage Build
// *************************** Log Parser **********************************
stage('Log Parser') {
agent any
steps {
script {
checkout scm
step([$class: 'LogParserPublisher',
failBuildOnError: true,
projectRulePath: "scripts/jenkins/all-log-parser.rules",
showGraphs: true,
unstableOnWarning: false,
useProjectRule: true
])
}
}
}
stage('Master') { stage('Master') {
when { environment name: 'JOB_NAME', value: 'ufz/ogs/master' } when { environment name: 'JOB_NAME', value: 'ufz/ogs/master' }
parallel { parallel {
......
# Ignore warnings in Conan packages on Windows
ok /\\\.conan\\/
# Ignore linker warnings on envinf1 with petsc
ok /.*/usr/bin/ld: warning: libssl.*may conflict with libssl.*/
ok /.*/usr/bin/ld: warning: libcrypto.*may conflict with libcrypto.*/
# CMake
warning /CMake Warning/
error /CMake Error/
# CTest
warning \\[WARNING\]\
error \[*][*][*]Failed\
# Clang
warning /: warning:/
# Clang sanitizer
error /: runtime error:/
error /==ERROR:/
# MSVC
warning /: warning C/
error /: error C/
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