diff --git a/Jenkinsfile b/Jenkinsfile index dad7008e567c797b3a47927692d7761f965e9380..6ab5af0bd674466ecc033fd73c3f4fcc0d5fbb32 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -269,7 +269,7 @@ pipeline { excludeFile('.*thread.hpp')], tools: [[pattern: 'build/build.log', name: 'MSVC', tool: [$class: 'MsBuild']]], - unstableTotalAll: 6 + unstableTotalAll: 4 } success { archiveArtifacts 'build/*.zip,build/conaninfo.txt' @@ -323,22 +323,6 @@ pipeline { } } // end parallel } // 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') { when { environment name: 'JOB_NAME', value: 'ufz/ogs/master' } parallel { diff --git a/scripts/jenkins/all-log-parser.rules b/scripts/jenkins/all-log-parser.rules deleted file mode 100644 index 30f37c6d15425abf9060e0666a247c7e52a90899..0000000000000000000000000000000000000000 --- a/scripts/jenkins/all-log-parser.rules +++ /dev/null @@ -1,25 +0,0 @@ -# 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/