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

Unified Diff: scripts/slave/recipes/cros/cbuildbot_tryjob.py

Issue 2325913002: recipe_modules/chromite: Use "build_type". (Closed)
Patch Set: Keep variant API in for downstream compatibility. Created 4 years, 3 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/recipes/cros/cbuildbot_tryjob.py
diff --git a/scripts/slave/recipes/cros/cbuildbot_tryjob.py b/scripts/slave/recipes/cros/cbuildbot_tryjob.py
index 0127fe98be408d2121a6bdd74b6b2dd854300bf9..39f16a68435807e7d335b325b6f021123bc77bbd 100644
--- a/scripts/slave/recipes/cros/cbuildbot_tryjob.py
+++ b/scripts/slave/recipes/cros/cbuildbot_tryjob.py
@@ -17,7 +17,7 @@ DEPS = [
# Map master name to 'chromite' configuration name.
_MASTER_CONFIG_MAP = {
'chromiumos.tryserver': {
- 'master_config': 'chromiumos_tryserver',
+ 'master_config': 'master_chromiumos_tryserver',
},
}
@@ -40,14 +40,14 @@ _TRYJOB_DATA = """
# configs.
_CHROMITE_CONFIG = {
'_default': {
- 'type': 'undefined',
+ 'build_type': 'undefined',
},
'_templates': {
'full': {
- 'type': 'full',
+ 'build_type': 'full',
},
'paladin': {
- 'type': 'paladin',
+ 'build_type': 'paladin',
},
},
'x86-generic-full': {

Powered by Google App Engine
This is Rietveld 408576698