Skip to content

Commit 0e4f488

Browse files
committed
Add build profile for Hibernate 6.6 stable previews.
Fixes GH-3562.
1 parent 493fbb0 commit 0e4f488

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

Jenkinsfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,27 @@ pipeline {
102102
}
103103
}
104104
}
105+
stage("test: baseline (hibernate 6.6 preview)") {
106+
agent {
107+
label 'data'
108+
}
109+
options { timeout(time: 30, unit: 'MINUTES')}
110+
environment {
111+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
112+
DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
113+
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
114+
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
115+
}
116+
steps {
117+
script {
118+
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
119+
sh "PROFILE=all-dbs,hibernate-66 " +
120+
"JENKINS_USER_NAME=${p['jenkins.user.name']} " +
121+
"ci/test.sh"
122+
}
123+
}
124+
}
125+
}
105126
stage("test: baseline (hibernate 6.6 snapshots)") {
106127
agent {
107128
label 'data'

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<hibernate>6.5.0.Final</hibernate>
3434
<hibernate-62>6.2.28.Final</hibernate-62>
3535
<hibernate-65-snapshots>6.5.3-SNAPSHOT</hibernate-65-snapshots>
36+
<hibernate-66>6.6.0.CR1</hibernate-66>
3637
<hibernate-66-snapshots>6.6.0-SNAPSHOT</hibernate-66-snapshots>
3738
<hibernate-70-snapshots>7.0.0-SNAPSHOT</hibernate-70-snapshots>
3839
<hsqldb>2.7.1</hsqldb>
@@ -85,6 +86,12 @@
8586
</repository>
8687
</repositories>
8788
</profile>
89+
<profile>
90+
<id>hibernate-66</id>
91+
<properties>
92+
<hibernate>${hibernate-66}</hibernate>
93+
</properties>
94+
</profile>
8895
<profile>
8996
<id>hibernate-66-snapshots</id>
9097
<properties>

0 commit comments

Comments
 (0)