From 06dd1209200df5eb79f17eadb8b923d4bcdf20de Mon Sep 17 00:00:00 2001 From: Ramakrishna Prabhu Date: Wed, 1 Oct 2025 15:51:28 -0500 Subject: [PATCH] fix issue with because Rocky 8.10 is EOL and replaced by 8.11 --- ci/utils/install_boost_tbb.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/utils/install_boost_tbb.sh b/ci/utils/install_boost_tbb.sh index c3e1eb0bd..0334f00d6 100644 --- a/ci/utils/install_boost_tbb.sh +++ b/ci/utils/install_boost_tbb.sh @@ -22,6 +22,8 @@ if [ -f /etc/os-release ]; then . /etc/os-release if [[ "$ID" == "rocky" ]]; then echo "Detected Rocky Linux. Installing Boost and TBB via dnf..." + dnf clean all + dnf -y update dnf install -y boost-devel tbb-devel if [[ "$(uname -m)" == "x86_64" ]]; then dnf install -y gcc-toolset-14-libquadmath-devel