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 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 >
You can’t perform that action at this time.
0 commit comments