Skip to content

Commit 73d1760

Browse files
committed
Test against Hibernate 6.3 on CI.
See #3106
1 parent ad61fba commit 73d1760

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

Jenkinsfile

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pipeline {
5454
}
5555

5656
parallel {
57-
stage("test: baseline (hibernate 6.1)") {
57+
stage("test: java.next (hibernate 6.1)") {
5858
agent {
5959
label 'data'
6060
}
@@ -72,7 +72,25 @@ pipeline {
7272
}
7373
}
7474
}
75-
stage("test: baseline (next)") {
75+
stage("test: baseline (hibernate 6.3)") {
76+
agent {
77+
label 'data'
78+
}
79+
options { timeout(time: 30, unit: 'MINUTES')}
80+
environment {
81+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
82+
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
83+
}
84+
steps {
85+
script {
86+
docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.docker']) {
87+
sh 'PROFILE=all-dbs,hibernate-63 ci/test.sh'
88+
sh "ci/clean.sh"
89+
}
90+
}
91+
}
92+
}
93+
stage("test: java.next (next)") {
7694
agent {
7795
label 'data'
7896
}

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@
5858
<hibernate>6.1.7.Final</hibernate>
5959
</properties>
6060
</profile>
61+
<profile>
62+
<id>hibernate-63</id>
63+
<properties>
64+
<hibernate>6.3.0.CR1</hibernate>
65+
</properties>
66+
</profile>
6167
<profile>
6268
<id>all-dbs</id>
6369
<build>

0 commit comments

Comments
 (0)