From 36617480a9548e062d5d23e0f9489fba83e2f938 Mon Sep 17 00:00:00 2001 From: Khairul Azhar Kasmiran Date: Thu, 18 Apr 2024 20:36:03 +0800 Subject: [PATCH] Try not installing centos-release-scl --- cibw_before_all.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cibw_before_all.sh b/cibw_before_all.sh index 2ba31dd..bd71c57 100644 --- a/cibw_before_all.sh +++ b/cibw_before_all.sh @@ -20,8 +20,9 @@ if command -v apt; then elif command -v apk; then apk update && apk add clang-dev elif command -v yum; then - yum -y install centos-release-scl llvm-toolset-7.0 llvm-toolset-7.0-llvm-devel - source scl_source enable llvm-toolset-7.0 || true + # yum -y install centos-release-scl llvm-toolset-7.0 llvm-toolset-7.0-llvm-devel + yum -y install llvm-toolset-7.0 llvm-toolset-7.0-llvm-devel + # source scl_source enable llvm-toolset-7.0 || true fi pushd rizin