Bug 1154377 - disable sccache on try mac builds, for intermittent timeouts r=bustage
authorNick Thomas <nthomas@mozilla.com>
Thu, 16 Apr 2015 15:50:41 +1200 (2015-04-16)
changeset 12179 58939afabf7c8f2c551123bf155e45a28707fa72
parent 12178 e422c6c8adf890592f740dcaa4d6f4a35531f118
child 12181 b90ef9540c76591f50bdbdf74e1014c9489e7ec7
push id8809
push usernthomas@mozilla.com
push dateThu, 16 Apr 2015 03:51:32 +0000 (2015-04-16)
reviewersbustage
bugs1154377
Bug 1154377 - disable sccache on try mac builds, for intermittent timeouts r=bustage
mozilla/config.py
--- a/mozilla/config.py
+++ b/mozilla/config.py
@@ -2722,16 +2722,19 @@ BRANCHES['try']['platforms']['android-ap
 BRANCHES['try']['platforms']['android-api-11-debug']['slaves'] = TRY_SLAVES['mock']
 BRANCHES['try']['platforms']['android-x86']['slaves'] = TRY_SLAVES['mock']
 for platform in BRANCHES['try']['platforms'].keys():
     # Sadly, the rule that mobile builds go to /mobile/
     # isn't true for try :(
     BRANCHES['try']['platforms'][platform]['stage_product'] = 'firefox'
     # Disable symbol upload across the board
     BRANCHES['try']['platforms'][platform]['upload_symbols'] = False
+    # Disable sccache for bustage, bug 1154377
+    if 'macosxe' in platform:
+        BRANCHES['try']['platforms'][platform]['env']['SCCACHE_DISABLE'] = '1'
 
 # Enable mozharness pinning
 for _, branch in items_at_least(BRANCHES, 'gecko_version', 30):
     branch['script_repo_manifest'] = \
         "https://hg.mozilla.org/%(repo_path)s/raw-file/%(revision)s/" + \
         "testing/mozharness/mozharness.json"
 
 BRANCHES['mozilla-b2g30_v1_4']['script_repo_manifest'] = \