Update CI to JDK 16.

See #2008.
This commit is contained in:
Greg L. Turnquist
2021-05-13 16:02:31 -05:00
parent b4e75e5f96
commit 3b1a4d2064
2 changed files with 4 additions and 4 deletions

6
Jenkinsfile vendored
View File

@@ -52,10 +52,10 @@ pipeline {
}
}
}
stage('Publish OpenJDK 15 + Redis 6.2 docker image') {
stage('Publish OpenJDK 16 + Redis 6.2 docker image') {
when {
anyOf {
changeset "ci/openjdk15-redis-6.2/**"
changeset "ci/openjdk16-redis-6.2/**"
changeset "Makefile"
}
}
@@ -64,7 +64,7 @@ pipeline {
steps {
script {
def image = docker.build("springci/spring-data-openjdk15-with-redis-6.2", "-f ci/openjdk15-redis-6.2/Dockerfile .")
def image = docker.build("springci/spring-data-openjdk16-with-redis-6.2", "-f ci/openjdk16-redis-6.2/Dockerfile .")
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
image.push()
}

View File

@@ -1,4 +1,4 @@
FROM adoptopenjdk/openjdk15:latest
FROM adoptopenjdk/openjdk16:latest
# Copy Spring Data Redis's Makefile into the container
COPY ./Makefile /