From a00bf6ffd5d2a60bb0cfc3cb39fe8dc1d75cf6d2 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Fri, 21 Sep 2018 13:07:03 +0200 Subject: [PATCH] [Jenkins] Removed obsolete log parser stage. --- Jenkinsfile | 18 +----------------- scripts/jenkins/all-log-parser.rules | 25 ------------------------- 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 scripts/jenkins/all-log-parser.rules diff --git a/Jenkinsfile b/Jenkinsfile index dad7008e567..6ab5af0bd67 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 30f37c6d154..00000000000 --- 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/ -- GitLab