From b63a65e5645517a80b4106ac17a7f87fc15e60c7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 30 Sep 2024 16:21:36 +0200 Subject: [PATCH] =?utf8?q?=F0=9F=92=9A=20Remove=20unnecessary=20plugins,?= =?utf8?q?=20fix=20unit=20test=20result=20collection?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8d026d..e058c32 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ pipeline { } post { always { - junit 'build/test-results/test/*.xml' + junit 'build/test-results/*/*.xml' } } } @@ -41,10 +41,8 @@ pipeline { jdk 'OpenJDK 8' } steps { - sh './gradlew jacocoTestReport findbugsMain countLines' + sh './gradlew jacocoTestReport' jacoco classPattern: 'build/classes/*/main', sourcePattern: '**/src/main/' - findbugs canComputeNew: false, defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', pattern: '**/findbugs/main.xml', unHealthy: '' - sloccountPublish encoding: '', pattern: 'build/reports/cloc/*.xml' } } } -- 2.7.4