From b1dfda894c7cd0bbb3d58029ef3df8ce1d1e7900 Mon Sep 17 00:00:00 2001 From: Christian Strebel Date: Tue, 27 Feb 2024 11:36:35 +0100 Subject: [PATCH] Replace unstableTotalAll with qualityGates of recordIssues in piplines --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cf850872f..c97545933 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,8 +33,8 @@ pipeline { } archiveArtifacts '**/target/*.iar,**/target/*.zip' archiveArtifacts artifacts: '**/target/selenide/reports/**/*', allowEmptyArchive: true - recordIssues tools: [eclipse()], unstableTotalAll: 1 - recordIssues tools: [mavenConsole()], unstableNewAll: 1, qualityGates: [[threshold: 1, type: 'NEW', unstable: true]] + recordIssues tools: [eclipse()], qualityGates: [[threshold: 1, type: 'TOTAL']] + recordIssues tools: [mavenConsole()], qualityGates: [[threshold: 1, type: 'NEW', unstable: true]] junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], testResults: '**/target/surefire-reports/**/*.xml' } }