Test against Hibernate 6.3 on CI.

See #3106
This commit is contained in:
Greg L. Turnquist
2023-08-09 16:35:27 -05:00
parent ad61fba1f4
commit 73d1760c47
2 changed files with 26 additions and 2 deletions

22
Jenkinsfile vendored
View File

@@ -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'
}

View File

@@ -58,6 +58,12 @@
<hibernate>6.1.7.Final</hibernate>
</properties>
</profile>
<profile>
<id>hibernate-63</id>
<properties>
<hibernate>6.3.0.CR1</hibernate>
</properties>
</profile>
<profile>
<id>all-dbs</id>
<build>