Skip to content

Commit af85325

Browse files
committed
Limit disk usage of TCK reports
We don't need to keep a copy of the whole JDK around in the reports of every single build... Note this is only necessary in the 3.1 TCK, as the 3.2 TCK doesn't seem to do that anymore.
1 parent e9f22fb commit af85325

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/jpa-3.1-tck.Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('hibernate-jenkins-pipeline-helpers@1.5') _
1+
@Library('hibernate-jenkins-pipeline-helpers') _
22

33
// Avoid running the pipeline on branch indexing
44
if (currentBuild.getBuildCauses().toString().contains('BranchIndexingCause')) {
@@ -71,6 +71,7 @@ pipeline {
7171
docker volume create tck-vol
7272
docker run -v ~/.m2/repository/org/hibernate:/root/.m2/repository/org/hibernate:z -v tck-vol:/tck/persistence-tck/tmp/:z -e NO_SLEEP=${params.NO_SLEEP} -e HIBERNATE_VERSION=$HIBERNATE_VERSION --name tck jakarta-tck-runner
7373
docker cp tck:/tck/persistence-tck/tmp/ ./results
74+
rm -Rf ./results/jdk-bundles
7475
"""
7576
archiveArtifacts artifacts: 'results/**'
7677
script {

0 commit comments

Comments
 (0)