From ca625c5504fd0231d175593c153c031aba22829c Mon Sep 17 00:00:00 2001 From: pramenku <7664080+pramenku@users.noreply.github.com> Date: Wed, 22 Oct 2025 14:12:36 +0530 Subject: [PATCH] [release/2.9] Enable CentOS logic https://ontrack-internal.amd.com/browse/SWDEV-549853 --- .ci/docker/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/docker/build.sh b/.ci/docker/build.sh index 8672fae2bbdd1..891c3e71fd63b 100755 --- a/.ci/docker/build.sh +++ b/.ci/docker/build.sh @@ -56,10 +56,14 @@ elif [[ "$image" == *-noble* ]]; then UBUNTU_VERSION=24.04 elif [[ "$image" == *ubuntu* ]]; then extract_version_from_image_name ubuntu UBUNTU_VERSION +elif [[ "$image" == *centos* ]]; then + extract_version_from_image_name centos CENTOS_VERSION fi if [ -n "${UBUNTU_VERSION}" ]; then OS="ubuntu" +elif [ -n "${CENTOS_VERSION}" ]; then + OS="centos" else echo "Unable to derive operating system base..." exit 1