File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments