Browse Source

Update JDK and OS versions in CI image

5.2.x
Brian Clozel 2 years ago
parent
commit
ca01ee05f7
  1. 2
      ci/images/ci-image/Dockerfile
  2. 4
      ci/images/get-jdk-url.sh

2
ci/images/ci-image/Dockerfile

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
FROM ubuntu:focal-20220302
FROM ubuntu:jammy-20230624
ADD setup.sh /setup.sh
ADD get-jdk-url.sh /get-jdk-url.sh

4
ci/images/get-jdk-url.sh

@ -3,10 +3,10 @@ set -e @@ -3,10 +3,10 @@ set -e
case "$1" in
java8)
echo "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz"
echo "https://github.com/bell-sw/Liberica/releases/download/8u372+7/bellsoft-jdk8u372+7-linux-amd64.tar.gz"
;;
java11)
echo "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.14.1_1.tar.gz"
echo "https://github.com/bell-sw/Liberica/releases/download/11.0.19%2B7/bellsoft-jdk11.0.19+7-linux-amd64.tar.gz"
;;
*)
echo $"Unknown java version"

Loading…
Cancel
Save