From e3883a91734b3555674ab43f5298262d582b52b5 Mon Sep 17 00:00:00 2001 From: Patrick Avery Date: Tue, 16 Apr 2024 10:48:21 -0500 Subject: [PATCH] Update ca certificates for centos Linux build Otherwise, wget is complaining that the certificates are expired when it tries to download miniconda from the anaconda website... Signed-off-by: Patrick Avery --- .github/workflows/container_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container_build.sh b/.github/workflows/container_build.sh index f17b74dbe..73a15c093 100755 --- a/.github/workflows/container_build.sh +++ b/.github/workflows/container_build.sh @@ -2,7 +2,7 @@ cd /github/workspace/ # Install dependencies -yum install -y wget git centos-release-scl +yum install -y wget git centos-release-scl ca-certificates # Need to install packages that depend on centos-release-scl on a different line. # This will use gcc==10, which is the same as what manylinux2014 uses.