From 04e39168c4d273a712fe101acd16ce91016aa2ef Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Tue, 28 Oct 2025 19:11:04 +0100 Subject: [PATCH] CI: Disable ccache on macOS (#6607) --- ci/ci-script.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/ci-script.bash b/ci/ci-script.bash index 0db86bbfc..59966d8eb 100755 --- a/ci/ci-script.bash +++ b/ci/ci-script.bash @@ -27,6 +27,8 @@ if [ "$CI_OS_NAME" = "linux" ]; then elif [ "$CI_OS_NAME" = "osx" ]; then export MAKE=make NPROC=$(sysctl -n hw.logicalcpu) + # Disable ccache, doesn't always work in GitHub Actions + export OBJCACHE= elif [ "$CI_OS_NAME" = "freebsd" ]; then export MAKE=gmake NPROC=$(sysctl -n hw.ncpu)