CI: Disable ccache on macOS (#6607)

This commit is contained in:
Geza Lore 2025-10-28 19:11:04 +01:00 committed by GitHub
parent ffbb3229a8
commit 04e39168c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -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)