File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,27 @@ pipeline {
7878 }
7979 }
8080 }
81+ stage(" test: hibernate 6.2 (LTS)" ) {
82+ agent {
83+ label ' data'
84+ }
85+ options { timeout(time : 30 , unit : ' MINUTES' )}
86+ environment {
87+ ARTIFACTORY = credentials(" ${ p['artifactory.credentials']} " )
88+ DEVELOCITY_CACHE = credentials(" ${ p['develocity.cache.credentials']} " )
89+ DEVELOCITY_ACCESS_KEY = credentials(" ${ p['develocity.access-key']} " )
90+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = ' org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
91+ }
92+ steps {
93+ script {
94+ docker. image(p[' docker.java.next.image' ]). inside(p[' docker.java.inside.docker' ]) {
95+ sh " PROFILE=all-dbs,hibernate-62 " +
96+ " JENKINS_USER_NAME=${ p['jenkins.user.name']} " +
97+ " ci/test.sh"
98+ }
99+ }
100+ }
101+ }
81102 stage(" test: java.next (next)" ) {
82103 agent {
83104 label ' data'
Original file line number Diff line number Diff line change 3232 <eclipselink-next >4.0.2</eclipselink-next >
3333 <hibernate >6.4.4.Final</hibernate >
3434 <hibernate-64-next-snapshots >6.4.5-SNAPSHOT</hibernate-64-next-snapshots >
35+ <hibernate-62 >6.2.22.Final</hibernate-62 >
3536 <hsqldb >2.7.1</hsqldb >
3637 <h2 >2.2.220</h2 >
3738 <jsqlparser >4.8</jsqlparser >
6970 </repository >
7071 </repositories >
7172 </profile >
73+ <profile >
74+ <id >hibernate-62</id >
75+ <properties >
76+ <hibernate >${hibernate-62}</hibernate >
77+ </properties >
78+ <dependencies >
79+ <dependency >
80+ <groupId >jakarta.persistence</groupId >
81+ <artifactId >jakarta.persistence-api</artifactId >
82+ </dependency >
83+ </dependencies >
84+ </profile >
7285 <profile >
7386 <id >all-dbs</id >
7487 <build >
You can’t perform that action at this time.
0 commit comments