Skip to content

Commit 566e7c2

Browse files
committed
ci: disable ccache on macOS 13 job
1 parent 3876ce3 commit 566e7c2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/create-test-plan.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,11 +519,14 @@ def spec_to_job(spec: JobSpec, key: str, trackmem_symbol_names: bool) -> JobDeta
519519
job.shared_lib = SharedLibType.DYLIB
520520
job.static_lib = StaticLibType.A
521521
job.ccache = True
522+
if spec.os == JobOs.Macos13:
523+
job.ccache = False
522524
job.apt_packages = []
523525
job.brew_packages.extend((
524-
"ccache",
525526
"ninja",
526527
))
528+
if job.ccache:
529+
job.brew_packages.append("ccache")
527530
if job.clang_tidy:
528531
job.brew_packages.append("llvm")
529532
if spec.xcode:

0 commit comments

Comments
 (0)