CI: Disable ccache on macOS (#6607)
This commit is contained in:
parent
ffbb3229a8
commit
04e39168c4
|
|
@ -27,6 +27,8 @@ if [ "$CI_OS_NAME" = "linux" ]; then
|
||||||
elif [ "$CI_OS_NAME" = "osx" ]; then
|
elif [ "$CI_OS_NAME" = "osx" ]; then
|
||||||
export MAKE=make
|
export MAKE=make
|
||||||
NPROC=$(sysctl -n hw.logicalcpu)
|
NPROC=$(sysctl -n hw.logicalcpu)
|
||||||
|
# Disable ccache, doesn't always work in GitHub Actions
|
||||||
|
export OBJCACHE=
|
||||||
elif [ "$CI_OS_NAME" = "freebsd" ]; then
|
elif [ "$CI_OS_NAME" = "freebsd" ]; then
|
||||||
export MAKE=gmake
|
export MAKE=gmake
|
||||||
NPROC=$(sysctl -n hw.ncpu)
|
NPROC=$(sysctl -n hw.ncpu)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue