Skip to content

Commit 9d3673c

Browse files
committed
[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.
1 parent f08d215 commit 9d3673c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ pipeline {
326326
post {
327327
always {
328328
junit 'eclipse.platform.swt/tests/*.test*/target/surefire-reports/*.xml'
329-
archiveArtifacts artifacts: '**/*.log,**/*.html,**/target/*.jar,**/target/*.zip'
329+
archiveArtifacts artifacts: '**/*.log,*/binaries/*/target/*.jar', excludes: '**/*-sources.jar'
330330
discoverGitReferenceBuild referenceJob: 'eclipse.platform.swt/master'
331331
// To accept unstable builds (test errors or new warnings introduced by third party changes) as reference using "ignoreQualityGate:true"
332332
recordIssues publishAllIssues: true, ignoreQualityGate:true, tools: [eclipse(name: 'Compiler and API Tools', pattern: '**/target/compilelogs/*.xml'), javaDoc()], qualityGates: [[threshold: 1, type: 'DELTA', unstable: true]]

0 commit comments

Comments
 (0)