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

Unified Diff: scripts/slave/recipes/v8/auto_roll_push.py

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge Created 4 years, 8 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/v8/auto_roll_push.py
diff --git a/scripts/slave/recipes/v8/auto_roll_push.py b/scripts/slave/recipes/v8/auto_roll_push.py
index 1e4d92c047152e781dbed76ffb819d554d5f4bd5..efcd942515db1a72b14cdbf32611d73822b9f524 100644
--- a/scripts/slave/recipes/v8/auto_roll_push.py
+++ b/scripts/slave/recipes/v8/auto_roll_push.py
@@ -4,6 +4,7 @@
DEPS = [
'depot_tools/bot_update',
+ 'depot_tools/infra_paths',
'chromium',
'depot_tools/gclient',
'recipe_engine/path',
@@ -21,8 +22,8 @@ def RunSteps(api):
step_result = api.python(
'check roll status',
- api.path['build'].join('scripts', 'tools', 'runit.py'),
- [api.path['build'].join('scripts', 'tools', 'pycurl.py'),
+ api.infra_paths['build'].join('scripts', 'tools', 'runit.py'),
+ [api.infra_paths['build'].join('scripts', 'tools', 'pycurl.py'),
'https://v8-roll.appspot.com/status'],
stdout=api.raw_io.output(),
step_test_data=lambda: api.raw_io.test_api.stream_output(
@@ -42,7 +43,7 @@ def RunSteps(api):
['--author', 'v8-autoroll@chromium.org',
'--reviewer', 'v8-autoroll@chromium.org',
'--push',
- '--work-dir', api.path['slave_build'].join('workdir')],
+ '--work-dir', api.infra_paths['slave_build'].join('workdir')],
cwd=api.path['checkout'],
)

Powered by Google App Engine
This is Rietveld 408576698