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

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

Issue 1917243002: Revert "build: roll infra_paths changes" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 efcd942515db1a72b14cdbf32611d73822b9f524..1e4d92c047152e781dbed76ffb819d554d5f4bd5 100644
--- a/scripts/slave/recipes/v8/auto_roll_push.py
+++ b/scripts/slave/recipes/v8/auto_roll_push.py
@@ -4,7 +4,6 @@
DEPS = [
'depot_tools/bot_update',
- 'depot_tools/infra_paths',
'chromium',
'depot_tools/gclient',
'recipe_engine/path',
@@ -22,8 +21,8 @@ def RunSteps(api):
step_result = api.python(
'check roll status',
- api.infra_paths['build'].join('scripts', 'tools', 'runit.py'),
- [api.infra_paths['build'].join('scripts', 'tools', 'pycurl.py'),
+ api.path['build'].join('scripts', 'tools', 'runit.py'),
+ [api.path['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(
@@ -43,7 +42,7 @@ def RunSteps(api):
['--author', 'v8-autoroll@chromium.org',
'--reviewer', 'v8-autoroll@chromium.org',
'--push',
- '--work-dir', api.infra_paths['slave_build'].join('workdir')],
+ '--work-dir', api.path['slave_build'].join('workdir')],
cwd=api.path['checkout'],
)

Powered by Google App Engine
This is Rietveld 408576698