Browse Source

Update CI to JDK 16.

See #567.
pull/1188/head
Greg L. Turnquist 5 years ago
parent
commit
341778a8b9
No known key found for this signature in database
GPG Key ID: CB2FA4D512B5C413
  1. 4
      Jenkinsfile

4
Jenkinsfile vendored

@ -74,7 +74,7 @@ pipeline { @@ -74,7 +74,7 @@ pipeline {
}
}
stage("test: baseline (jdk15)") {
stage("test: baseline (jdk16)") {
agent {
label 'data'
}
@ -88,7 +88,7 @@ pipeline { @@ -88,7 +88,7 @@ pipeline {
steps {
script {
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
docker.image('adoptopenjdk/openjdk15:latest').inside('-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v $HOME:/tmp/jenkins-home') {
docker.image('adoptopenjdk/openjdk16:latest').inside('-u root -v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker -v $HOME:/tmp/jenkins-home') {
sh "docker login --username ${DOCKER_HUB_USR} --password ${DOCKER_HUB_PSW}"
sh 'PROFILE=ci,java11 ci/test.sh'
sh "ci/clean.sh"

Loading…
Cancel
Save