diff --git a/recipes/README.recipes.md b/recipes/README.recipes.md index b030717ad..a6215a776 100644 --- a/recipes/README.recipes.md +++ b/recipes/README.recipes.md @@ -1043,7 +1043,7 @@ Raises: [DEPS](/recipes/recipe_modules/gclient/examples/full.py#5): [gclient](#recipe_modules-gclient), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/step][recipe_engine/recipe_modules/step] -— **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#63)(api):** +— **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#64)(api):** ### *recipes* / [gclient:tests/diff\_deps](/recipes/recipe_modules/gclient/tests/diff_deps.py) [DEPS](/recipes/recipe_modules/gclient/tests/diff_deps.py#7): [gclient](#recipe_modules-gclient), [recipe\_engine/assertions][recipe_engine/recipe_modules/assertions], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/platform][recipe_engine/recipe_modules/platform], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io] diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index f60740095..336c4df75 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -386,6 +386,13 @@ def infradata_config(c): soln.url = 'https://chrome-internal.googlesource.com/infradata/config.git' c.got_revision_mapping['infra-data-config'] = 'got_revision' +@config_ctx() +def infradata_rbe(c): + soln = c.solutions.add() + soln.name = 'infradata-rbe' + soln.url = 'https://chrome-internal.googlesource.com/infradata/rbe.git' + c.got_revision_mapping['infradata-rbe'] = 'got_revision' + @config_ctx() def with_branch_heads(c): c.with_branch_heads = True diff --git a/recipes/recipe_modules/gclient/examples/full.py b/recipes/recipe_modules/gclient/examples/full.py index 331a83470..af77f1250 100644 --- a/recipes/recipe_modules/gclient/examples/full.py +++ b/recipes/recipe_modules/gclient/examples/full.py @@ -41,6 +41,7 @@ TEST_CONFIGS = [ 'infra', 'infradata_master_manager', 'infradata_config', + 'infradata_rbe', 'internal_deps', 'luci_gae', 'luci_go',