diff --git a/Jenkinsfile b/Jenkinsfile index 887ba54de..39ecab900 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,7 +54,7 @@ pipeline { } parallel { - stage("test: baseline (hibernate 6.1)") { + stage("test: java.next (hibernate 6.1)") { agent { label 'data' } @@ -72,7 +72,25 @@ pipeline { } } } - stage("test: baseline (next)") { + stage("test: baseline (hibernate 6.3)") { + agent { + label 'data' + } + options { timeout(time: 30, unit: 'MINUTES')} + environment { + ARTIFACTORY = credentials("${p['artifactory.credentials']}") + TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor' + } + steps { + script { + docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.docker']) { + sh 'PROFILE=all-dbs,hibernate-63 ci/test.sh' + sh "ci/clean.sh" + } + } + } + } + stage("test: java.next (next)") { agent { label 'data' } diff --git a/pom.xml b/pom.xml index 16449a528..7b96c65fc 100644 --- a/pom.xml +++ b/pom.xml @@ -58,6 +58,12 @@ 6.1.7.Final + + hibernate-63 + + 6.3.0.CR1 + + all-dbs