Skip to content

Commit 8ac3d19

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 10d2c4d commit 8ac3d19

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.13') _
1+
@Library('hibernate-jenkins-pipeline-helpers') _
22

33
// Avoid running the pipeline on branch indexing
44
if (currentBuild.getBuildCauses().toString().contains('BranchIndexingCause')) {
@@ -80,6 +80,7 @@ pipeline {
8080
docker volume create tck-vol
8181
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
8282
docker cp tck:/tck/persistence-tck/tmp/ ./results
83+
rm -Rf ./results/jdk-bundles
8384
"""
8485
archiveArtifacts artifacts: 'results/**'
8586
script {

0 commit comments

Comments
 (0)