From b21e91fe3264b0577b4fbd0dad91b87f4bd721a8 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 24 Apr 2023 23:23:19 +0200 Subject: [PATCH] Upgrade CI infrastructure This commit upgrades versions for our CI infrastructure: * Ubuntu OS * Docker * JDK 17 --- ci/images/ci-image/Dockerfile | 2 +- ci/images/get-docker-url.sh | 2 +- ci/images/get-jdk-url.sh | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/images/ci-image/Dockerfile b/ci/images/ci-image/Dockerfile index db61ef9b..3a5e8d2b 100644 --- a/ci/images/ci-image/Dockerfile +++ b/ci/images/ci-image/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:jammy-20230126 +FROM ubuntu:jammy-20230308 ADD setup.sh /setup.sh ADD get-jdk-url.sh /get-jdk-url.sh diff --git a/ci/images/get-docker-url.sh b/ci/images/get-docker-url.sh index 01626c43..074f2e5c 100755 --- a/ci/images/get-docker-url.sh +++ b/ci/images/get-docker-url.sh @@ -1,5 +1,5 @@ #!/bin/bash set -e -version="20.10.18" +version="23.0.4" echo "https://download.docker.com/linux/static/stable/x86_64/docker-$version.tgz"; \ No newline at end of file diff --git a/ci/images/get-jdk-url.sh b/ci/images/get-jdk-url.sh index 2fc3b565..ac487b0c 100755 --- a/ci/images/get-jdk-url.sh +++ b/ci/images/get-jdk-url.sh @@ -3,10 +3,10 @@ set -e case "$1" in java17) - echo "https://github.com/bell-sw/Liberica/releases/download/17.0.6+10/bellsoft-jdk17.0.6+10-linux-amd64.tar.gz" + echo "https://github.com/bell-sw/Liberica/releases/download/17.0.7+7/bellsoft-jdk17.0.7+7-linux-amd64.tar.gz" ;; - java19) - echo "https://github.com/bell-sw/Liberica/releases/download/19.0.2+9/bellsoft-jdk19.0.2+9-linux-amd64.tar.gz" + java20) + echo "https://github.com/bell-sw/Liberica/releases/download/20.0.1+10/bellsoft-jdk20.0.1+10-linux-amd64.tar.gz" ;; *) echo $"Unknown java version"