From 60e218e15080086e80f167da9709947245d82375 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Mon, 3 Feb 2025 23:12:40 +0100 Subject: [PATCH] [Build] Only archive the built native-fragment jars All other jar and html files are usually not of interest and just complicate the build archive and significantly increase its size. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e9727dd4205..7ee510e82aa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -326,7 +326,7 @@ pipeline { post { always { junit 'eclipse.platform.swt/tests/*.test*/target/surefire-reports/*.xml' - archiveArtifacts artifacts: '**/*.log,**/*.html,**/target/*.jar,**/target/*.zip' + archiveArtifacts artifacts: '**/*.log,*/binaries/*/target/*.jar', excludes: '**/*-sources.jar' discoverGitReferenceBuild referenceJob: 'eclipse.platform.swt/master' // To accept unstable builds (test errors or new warnings introduced by third party changes) as reference using "ignoreQualityGate:true" recordIssues publishAllIssues: true, ignoreQualityGate:true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]]