From 1cbeb7a6122ca72e8246c807421d80cba745a2ec Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 21 May 2019 17:43:55 -0400 Subject: [PATCH] Disable sccache on macOS --- etc/taskcluster/decision_task.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index b07ae54b023..048a0075665 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -117,12 +117,12 @@ build_env = { "CARGO_INCREMENTAL": "0", } unix_build_env = { - "CCACHE": "sccache", - "RUSTC_WRAPPER": "sccache", - "SCCACHE_IDLE_TIMEOUT": "1200", } linux_build_env = { "SHELL": "/bin/dash", # For SpiderMonkey’s build system + "CCACHE": "sccache", + "RUSTC_WRAPPER": "sccache", + "SCCACHE_IDLE_TIMEOUT": "1200", } macos_build_env = {} windows_build_env = {