From 8b7a8cc3e5bafa4ff51e23e2370d65acc774a2bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yoann=20Rodi=C3=A8re?= Date: Fri, 6 Jun 2025 13:14:16 +0200 Subject: [PATCH] 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. --- ci/jpa-3.1-tck.Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/jpa-3.1-tck.Jenkinsfile b/ci/jpa-3.1-tck.Jenkinsfile index f7f9f0e81538..cffb6796858f 100644 --- a/ci/jpa-3.1-tck.Jenkinsfile +++ b/ci/jpa-3.1-tck.Jenkinsfile @@ -1,4 +1,4 @@ -@Library('hibernate-jenkins-pipeline-helpers@1.13') _ +@Library('hibernate-jenkins-pipeline-helpers') _ // Avoid running the pipeline on branch indexing if (currentBuild.getBuildCauses().toString().contains('BranchIndexingCause')) { @@ -80,6 +80,7 @@ pipeline { docker volume create tck-vol 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 docker cp tck:/tck/persistence-tck/tmp/ ./results + rm -Rf ./results/jdk-bundles """ archiveArtifacts artifacts: 'results/**' script {