Skip to content

Commit 9febe01

Browse files
committed
ci: Update certificates to be able to install Intel compilers (#2101)
Spontaneously broke several days ago. This fix is identical to one we did for OIIO. Signed-off-by: Larry Gritz <lg@larrygritz.com>
1 parent 551dda5 commit 9febe01

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/build-scripts/gh-installdeps.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,15 @@ if [[ "$ASWF_ORG" != "" ]] ; then
6464
fi
6565

6666
if [[ "$CXX" == "icpc" || "$CC" == "icc" || "$USE_ICC" != "" ]] ; then
67+
sudo dnf -y install https://download.rockylinux.org/pub/rocky/8.10/BaseOS/x86_64/os/Packages/c/ca-certificates-2025.2.80_v9.0.304-80.2.el8_10.noarch.rpm
6768
# Lock down icc to 2022.1 because newer versions hosted on the Intel
6869
# repo require a glibc too new for the ASWF CentOS7-based containers
6970
# we run CI on.
7071
sudo cp src/build-scripts/oneAPI.repo /etc/yum.repos.d
7172
sudo /usr/bin/yum install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2022.1.0.x86_64
7273
set +e; source /opt/intel/oneapi/setvars.sh --config oneapi_2022.1.0.cfg; set -e
7374
elif [[ "$CXX" == "icpc" || "$CC" == "icc" || "$USE_ICC" != "" || "$CXX" == "icpx" || "$CC" == "icx" || "$USE_ICX" != "" ]] ; then
75+
sudo dnf -y install https://download.rockylinux.org/pub/rocky/8.10/BaseOS/x86_64/os/Packages/c/ca-certificates-2025.2.80_v9.0.304-80.2.el8_10.noarch.rpm
7476
# Lock down icx to 2023.1 because newer versions hosted on the Intel
7577
# repo require a libstd++ too new for the ASWF containers we run CI on
7678
# because their default install of gcc 9 based toolchain.

0 commit comments

Comments
 (0)