Skip to content

Commit

Permalink
Merge branch 'lts' into lts-with-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Jul 22, 2024
2 parents 69d115f + d76e9a0 commit 1964eaa
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion alpine/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG ALPINE_TAG=3.20.1

FROM alpine:"${ALPINE_TAG}" AS jre-build

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7

SHELL ["/bin/ash", "-o", "pipefail", "-c"]

Expand Down
4 changes: 2 additions & 2 deletions build-windows-lts-with-jdk11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
args:
COMMIT_SHA: ${COMMIT_SHA}
JAVA_HOME: "C:/openjdk-17"
JAVA_VERSION: 17.0.11_9
JAVA_VERSION: 17.0.12_7
JENKINS_SHA: ${JENKINS_SHA}
JENKINS_VERSION: ${JENKINS_VERSION}
TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION}
Expand All @@ -39,7 +39,7 @@ services:
args:
COMMIT_SHA: ${COMMIT_SHA}
JAVA_HOME: "C:/openjdk-21"
JAVA_VERSION: 21.0.3_9
JAVA_VERSION: 21.0.4_7
JENKINS_SHA: ${JENKINS_SHA}
JENKINS_VERSION: ${JENKINS_VERSION}
TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION}
Expand Down
4 changes: 2 additions & 2 deletions build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
args:
COMMIT_SHA: ${COMMIT_SHA}
JAVA_HOME: "C:/openjdk-17"
JAVA_VERSION: 17.0.11_9
JAVA_VERSION: 17.0.12_7
JENKINS_SHA: ${JENKINS_SHA}
JENKINS_VERSION: ${JENKINS_VERSION}
TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION}
Expand All @@ -24,7 +24,7 @@ services:
args:
COMMIT_SHA: ${COMMIT_SHA}
JAVA_HOME: "C:/openjdk-21"
JAVA_VERSION: 21.0.3_9
JAVA_VERSION: 21.0.4_7
JENKINS_SHA: ${JENKINS_SHA}
JENKINS_VERSION: ${JENKINS_VERSION}
TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm-slim/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20240701

FROM debian:bookworm-"${BOOKWORM_TAG}"-slim as jre-build

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20240701

FROM debian:bookworm-"${BOOKWORM_TAG}" as jre-build

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
4 changes: 2 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ variable "JAVA11_VERSION" {
}

variable "JAVA17_VERSION" {
default = "17.0.11_9"
default = "17.0.12_7"
}

variable "JAVA21_VERSION" {
default = "21.0.3_9"
default = "21.0.4_7"
}

variable "BOOKWORM_TAG" {
Expand Down
2 changes: 1 addition & 1 deletion rhel/ubi9/hotspot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM registry.access.redhat.com/ubi9/ubi:9.4-1123.1719560047 as jre-build

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
4 changes: 2 additions & 2 deletions windows/windowsservercore/hotspot/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# escape=`
# hadolint shell=powershell

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7
ARG WINDOWS_VERSION=ltsc2019
ARG TOOLS_WINDOWS_VERSION=1809

Expand All @@ -10,7 +10,7 @@ FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION}" AS jre-build
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ARG JAVA_VERSION=17.0.11_9
ARG JAVA_VERSION=17.0.12_7

RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; `
$javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `
Expand Down

0 comments on commit 1964eaa

Please sign in to comment.