Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1ee7f9a

Browse files
committedJun 6, 2025··
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 3b080e1 commit 1ee7f9a

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')) {
@@ -65,6 +65,7 @@ pipeline {
6565
docker volume create tck-vol
6666
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
6767
docker cp tck:/tck/persistence-tck/tmp/ ./results
68+
rm -Rf ./results/jdk-bundles
6869
"""
6970
archiveArtifacts artifacts: 'results/**'
7071
script {

0 commit comments

Comments
 (0)
Please sign in to comment.