Skip to content

Commit 553467f

Browse files
committed
Test against Hibernate 6.3 on CI.
See #3106
1 parent accc5c3 commit 553467f

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

Jenkinsfile

+20-2
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

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@
6868
<hibernate>6.1.7.Final</hibernate>
6969
</properties>
7070
</profile>
71+
<profile>
72+
<id>hibernate-63</id>
73+
<properties>
74+
<hibernate>6.3.0.CR1</hibernate>
75+
</properties>
76+
</profile>
7177
<profile>
7278
<id>all-dbs</id>
7379
<build>

0 commit comments

Comments
 (0)