File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ pipeline {
54
54
}
55
55
56
56
parallel {
57
- stage(" test: baseline (hibernate 6.1)" ) {
57
+ stage(" test: java.next (hibernate 6.1)" ) {
58
58
agent {
59
59
label ' data'
60
60
}
@@ -72,7 +72,25 @@ pipeline {
72
72
}
73
73
}
74
74
}
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)" ) {
76
94
agent {
77
95
label ' data'
78
96
}
Original file line number Diff line number Diff line change 68
68
<hibernate >6.1.7.Final</hibernate >
69
69
</properties >
70
70
</profile >
71
+ <profile >
72
+ <id >hibernate-63</id >
73
+ <properties >
74
+ <hibernate >6.3.0.CR1</hibernate >
75
+ </properties >
76
+ </profile >
71
77
<profile >
72
78
<id >all-dbs</id >
73
79
<build >
You can’t perform that action at this time.
0 commit comments