#1813 - Re-activate CI build for the spring-next profile.

This commit is contained in:
Oliver Drotbohm
2022-07-14 10:55:25 +02:00
parent 0098f2931a
commit 1235c5174d

13
Jenkinsfile vendored
View File

@@ -40,6 +40,19 @@ pipeline {
}
}
stage("test: compatibility (JDK 17, Spring.next)") {
agent {
docker {
image 'openjdk:17'
args '-v $HOME/.m2:/tmp/jenkins-home/.m2'
}
}
options { timeout(time: 30, unit: 'MINUTES') }
steps {
sh 'PROFILE=spring-next ci/test.sh'
}
}
stage('Deploy') {
agent {
docker {