From 38c3f6ff79713c44ffc69d9228f53a8006b7a866 Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Fri, 6 Oct 2023 14:13:10 +0200 Subject: [PATCH] HHH-17297 Adapt limited support testing for 6.2 --- ci/jpa-3.1-tck.Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/jpa-3.1-tck.Jenkinsfile b/ci/jpa-3.1-tck.Jenkinsfile index 412e7c3cd2..c7200e7548 100644 --- a/ci/jpa-3.1-tck.Jenkinsfile +++ b/ci/jpa-3.1-tck.Jenkinsfile @@ -29,6 +29,10 @@ pipeline { stage('Build') { steps { script { + // Don't build the TCK on PRs, unless they use the tck label + if ( env.CHANGE_ID && !pullRequest.labels.contains( 'tck' ) ) { + return + } docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') { docker.image('openjdk:11-jdk').pull() }