Upgrade CI infrastructure

This commit upgrades versions for our CI infrastructure:

* Ubuntu OS
* Docker
* JDK 17
This commit is contained in:
Brian Clozel
2023-04-24 23:23:19 +02:00
parent 45b0a2a10e
commit b21e91fe32
3 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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";

View File

@@ -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"