File tree Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,25 @@ pipeline {
74
74
}
75
75
}
76
76
}
77
+ stage(" test: baseline (hibernate 6.4.x snapshots)" ) {
78
+ agent {
79
+ label ' data'
80
+ }
81
+ options { timeout(time : 30 , unit : ' MINUTES' )}
82
+ environment {
83
+ ARTIFACTORY = credentials(" ${ p['artifactory.credentials']} " )
84
+ GRADLE_ENTERPRISE_CACHE = credentials(" ${ p['gradle-enterprise-cache.credentials']} " )
85
+ GRADLE_ENTERPRISE_ACCESS_KEY = credentials(" ${ p['gradle-enterprise.access-key']} " )
86
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = ' org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
87
+ }
88
+ steps {
89
+ script {
90
+ docker. image(p[' docker.java.next.image' ]). inside(p[' docker.java.inside.docker' ]) {
91
+ sh ' PROFILE=all-dbs,hibernate-64-next ci/test.sh'
92
+ }
93
+ }
94
+ }
95
+ }
77
96
stage(" test: java.next (next)" ) {
78
97
agent {
79
98
label ' data'
Original file line number Diff line number Diff line change 31
31
<eclipselink >3.0.3</eclipselink >
32
32
<eclipselink-next >4.0.2</eclipselink-next >
33
33
<hibernate >6.3.1.Final</hibernate >
34
- <hibernate-next-snapshots >6.3.2-SNAPSHOT</hibernate-next-snapshots >
34
+ <hibernate-64-next-snapshots >6.4.0-SNAPSHOT</hibernate-64-next-snapshots >
35
+ <hibernate-63-next-snapshots >6.3.2-SNAPSHOT</hibernate-63-next-snapshots >
35
36
<hsqldb >2.7.1</hsqldb >
36
37
<h2 >2.2.220</h2 >
37
38
<jsqlparser >4.5</jsqlparser >
54
55
55
56
56
57
<profiles >
58
+ <profile >
59
+ <id >hibernate-64-next</id >
60
+ <properties >
61
+ <hibernate >${hibernate-64-next-snapshots}</hibernate >
62
+ </properties >
63
+ <repositories >
64
+ <repository >
65
+ <id >sonatype-oss</id >
66
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
67
+ <releases >
68
+ <enabled >false</enabled >
69
+ </releases >
70
+ </repository >
71
+ </repositories >
72
+ </profile >
57
73
<profile >
58
74
<id >hibernate-63-next</id >
59
75
<properties >
60
- <hibernate >${hibernate-next-snapshots}</hibernate >
76
+ <hibernate >${hibernate-63- next-snapshots}</hibernate >
61
77
</properties >
62
78
<repositories >
63
79
<repository >
You can’t perform that action at this time.
0 commit comments