From 8c53fdac222390970a4e8c53e5488d0a3f47dc36 Mon Sep 17 00:00:00 2001 From: Jithun Nair <37884920+jithunnair-amd@users.noreply.github.com> Date: Wed, 7 Aug 2024 17:22:47 -0500 Subject: [PATCH] Add Ubuntu 24.04 support to docker build script --- .ci/docker/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/docker/build.sh b/.ci/docker/build.sh index 29a9d5fdb9fd..f0e6496ae693 100755 --- a/.ci/docker/build.sh +++ b/.ci/docker/build.sh @@ -50,6 +50,8 @@ if [[ "$image" == *-focal* ]]; then UBUNTU_VERSION=20.04 elif [[ "$image" == *-jammy* ]]; then UBUNTU_VERSION=22.04 +elif [[ "$image" == *-noble* ]]; then + UBUNTU_VERSION=24.04 elif [[ "$image" == *ubuntu* ]]; then extract_version_from_image_name ubuntu UBUNTU_VERSION elif [[ "$image" == *centos* ]]; then