File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,27 @@ pipeline {
102
102
}
103
103
}
104
104
}
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
+ }
105
126
stage(" test: baseline (hibernate 6.6 snapshots)" ) {
106
127
agent {
107
128
label ' data'
Original file line number Diff line number Diff line change 33
33
<hibernate >6.5.0.Final</hibernate >
34
34
<hibernate-62 >6.2.28.Final</hibernate-62 >
35
35
<hibernate-65-snapshots >6.5.3-SNAPSHOT</hibernate-65-snapshots >
36
+ <hibernate-66 >6.6.0.CR1</hibernate-66 >
36
37
<hibernate-66-snapshots >6.6.0-SNAPSHOT</hibernate-66-snapshots >
37
38
<hibernate-70-snapshots >7.0.0-SNAPSHOT</hibernate-70-snapshots >
38
39
<hsqldb >2.7.1</hsqldb >
85
86
</repository >
86
87
</repositories >
87
88
</profile >
89
+ <profile >
90
+ <id >hibernate-66</id >
91
+ <properties >
92
+ <hibernate >${hibernate-66}</hibernate >
93
+ </properties >
94
+ </profile >
88
95
<profile >
89
96
<id >hibernate-66-snapshots</id >
90
97
<properties >
You can’t perform that action at this time.
0 commit comments