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

Unified Diff: scripts/slave/recipes/infra/infra_continuous.py

Issue 2045493002: build: add path_config=kitchen to infra recipes tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 6 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/infra/infra_continuous.py
diff --git a/scripts/slave/recipes/infra/infra_continuous.py b/scripts/slave/recipes/infra/infra_continuous.py
index cdacea3fff8743f8c1bdf830aa385e39bcfd9df2..dc25937c381a971269a77064311e589ec23f72d6 100644
--- a/scripts/slave/recipes/infra/infra_continuous.py
+++ b/scripts/slave/recipes/infra/infra_continuous.py
@@ -7,6 +7,7 @@ from recipe_engine.recipe_api import Property
DEPS = [
'cipd',
'depot_tools/bot_update',
+ 'depot_tools/depot_tools',
'file',
'depot_tools/gclient',
'recipe_engine/json',
@@ -71,7 +72,7 @@ def build_luci(api):
absfiles = [api.path.join(go_bin, i) for i in files]
api.python(
'upload go bin',
- api.path['depot_tools'].join('upload_to_google_storage.py'),
+ api.depot_tools.upload_to_google_storage_path,
['-b', 'chromium-luci'] + absfiles)
for name, abspath in zip(files, absfiles):
sha1 = api.file.read(
@@ -164,6 +165,7 @@ def GenTests(api):
yield (
api.test('infra') +
api.properties.git_scheduled(
+ path_config='kitchen',
buildername='infra-continuous',
buildnumber=123,
mastername='chromium.infra',
@@ -175,6 +177,7 @@ def GenTests(api):
yield (
api.test('infra_win') +
api.properties.git_scheduled(
+ path_config='kitchen',
buildername='infra-continuous',
buildnumber=123,
mastername='chromium.infra',
@@ -185,6 +188,7 @@ def GenTests(api):
yield (
api.test('infra_internal') +
api.properties.git_scheduled(
+ path_config='kitchen',
buildername='infra-internal-continuous',
buildnumber=123,
mastername='internal.infra',
@@ -197,6 +201,7 @@ def GenTests(api):
yield (
api.test('infra-64') +
api.properties.git_scheduled(
+ path_config='kitchen',
buildername='infra-continuous-64',
buildnumber=123,
mastername='chromium.infra',
@@ -207,6 +212,7 @@ def GenTests(api):
yield (
api.test('infra_swarming') +
api.properties.git_scheduled(
+ path_config='kitchen',
buildername='infra-continuous-32',
buildnumber=-1,
mastername='chromium.infra',

Powered by Google App Engine
This is Rietveld 408576698