HHH-17297 Adapt limited support testing for 6.2
This commit is contained in:
parent
2886186ef1
commit
38c3f6ff79
|
@ -29,6 +29,10 @@ pipeline {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
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.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
|
||||||
docker.image('openjdk:11-jdk').pull()
|
docker.image('openjdk:11-jdk').pull()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue