Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 2392853002: Disable local fallback in goma staging environment (Closed)
Patch Set: goma_canary -> goma_failfast Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index 39692d622d682bec07b66551cbb3714ea78d9843..200192641e4e55df934c33c1d6b14e6a6ac1d6a6 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -39,7 +39,7 @@ def BaseConfig(HOST_PLATFORM, HOST_ARCH, HOST_BITS,
compiler = Single(basestring, required=False),
mode = Single(basestring, required=False),
goma_dir = Single(Path, required=False),
- goma_canary = Single(bool, empty_val=False, required=False),
+ goma_failfast = Single(bool, empty_val=False, required=False),
goma_hermetic = Single(basestring, required=False),
goma_enable_remote_link = Single(bool, empty_val=False, required=False),
goma_store_local_run_output = Single(bool, empty_val=False, required=False),
@@ -248,11 +248,12 @@ def msvs2015(c):
@config_ctx()
def goma_canary(c):
- c.compile_py.goma_canary = True
+ c.compile_py.goma_failfast = True
c.compile_py.goma_hermetic = 'error'
@config_ctx()
def goma_staging(c):
+ c.compile_py.goma_failfast = True
c.env.GOMA_STUBBY_PROXY_IP_ADDRESS = 'sandbox.google.com'
@config_ctx()

Powered by Google App Engine
This is Rietveld 408576698