diff options
author | Brad King <brad.king@kitware.com> | 2023-06-13 15:20:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-06-13 15:23:49 (GMT) |
commit | ac44557c7b216bf7e1f613070c5406bc1bc07656 (patch) | |
tree | a00d12c41b2d667071b7378cf8003fd37c51803d /.gitlab/ci | |
parent | 09028bed4c8fe0fde6172bb2ca7783eea27ea89f (diff) | |
download | CMake-ac44557c7b216bf7e1f613070c5406bc1bc07656.zip CMake-ac44557c7b216bf7e1f613070c5406bc1bc07656.tar.gz CMake-ac44557c7b216bf7e1f613070c5406bc1bc07656.tar.bz2 |
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.
Diffstat (limited to '.gitlab/ci')
-rw-r--r-- | .gitlab/ci/configure_macos_arm64_ninja_multi.cmake | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab/ci/configure_macos_arm64_ninja_multi.cmake b/.gitlab/ci/configure_macos_arm64_ninja_multi.cmake index b22285c..d81bd30 100644 --- a/.gitlab/ci/configure_macos_arm64_ninja_multi.cmake +++ b/.gitlab/ci/configure_macos_arm64_ninja_multi.cmake @@ -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") |