diff --git a/Jenkinsfile b/Jenkinsfile
index 11bac59f6..793e2e97d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -57,7 +57,7 @@ pipeline {
}
parallel {
- stage("test: baseline (hibernate 6.4.x snapshots)") {
+ stage("test: hibernate 6.2 (LTS)") {
agent {
label 'data'
}
@@ -71,34 +71,97 @@ pipeline {
steps {
script {
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-64-next " +
+ sh "PROFILE=all-dbs,hibernate-62 " +
+ "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
+ "ci/test.sh"
+ }
+ }
+ }
+ }
+ stage("test: baseline (hibernate 6.4 snapshots)") {
+ agent {
+ label 'data'
+ }
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
+ DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
+ sh "PROFILE=all-dbs,hibernate-64-snapshots " +
+ "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
+ "ci/test.sh"
+ }
+ }
+ }
+ }
+ stage("test: baseline (hibernate 6.5)") {
+ agent {
+ label 'data'
+ }
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
+ DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
+ sh "PROFILE=all-dbs,hibernate-65 " +
+ "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
+ "ci/test.sh"
+ }
+ }
+ }
+ }
+ stage("test: baseline (hibernate 6.5 snapshots)") {
+ agent {
+ label 'data'
+ }
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
+ DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
+ sh "PROFILE=all-dbs,hibernate-65-snapshots " +
+ "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
+ "ci/test.sh"
+ }
+ }
+ }
+ }
+ stage("test: baseline (hibernate 6.6 snapshots)") {
+ agent {
+ label 'data'
+ }
+ options { timeout(time: 30, unit: 'MINUTES')}
+ environment {
+ ARTIFACTORY = credentials("${p['artifactory.credentials']}")
+ DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
+ DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
+ TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
+ }
+ steps {
+ script {
+ docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
+ sh "PROFILE=all-dbs,hibernate-66-snapshots " +
"JENKINS_USER_NAME=${p['jenkins.user.name']} " +
"ci/test.sh"
}
}
}
}
- stage("test: hibernate 6.2 (LTS)") {
- agent {
- label 'data'
- }
- options { timeout(time: 30, unit: 'MINUTES')}
- environment {
- ARTIFACTORY = credentials("${p['artifactory.credentials']}")
- DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
- DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
- TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
- }
- steps {
- script {
- docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-62 " +
- "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
- "ci/test.sh"
- }
- }
- }
- }
stage("test: java.next (next)") {
agent {
label 'data'
diff --git a/pom.xml b/pom.xml
old mode 100644
new mode 100755
index f6494f664..43ae9ea27
--- a/pom.xml
+++ b/pom.xml
@@ -31,8 +31,11 @@