ci: Disable sccache for macOS Ninja Multi-Config nightly job

The job frequently fails during `ctest_build`, and the log shows

    sccache: Compiler killed by signal 9

It does not compile much anyway, so disable sccache pending further
investigation.
This commit is contained in:
Brad King 2023-06-13 11:20:55 -04:00
parent 09028bed4c
commit ac44557c7b

View File

@ -2,5 +2,9 @@ if (NOT "$ENV{CMAKE_CI_NIGHTLY}" STREQUAL "")
set(CMake_TEST_ISPC "ON" CACHE STRING "")
endif()
# FIXME: sccache sometimes fails with "Compiler killed by signal 9".
# This job does not compile much anyway, so suppress it for now.
set(configure_no_sccache 1)
include("${CMAKE_CURRENT_LIST_DIR}/configure_macos_common.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/configure_external_test.cmake")