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

Unified Diff: scripts/slave/recipes/v8/auto_roll_v8rel.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_v8rel.py
diff --git a/scripts/slave/recipes/v8/auto_roll_v8rel.py b/scripts/slave/recipes/v8/auto_roll_v8rel.py
index aeace9e344aebf308e4d755d136c685e6cf17029..eadfa4856c4dff038adf7d390a3ee1203282f79f 100644
--- a/scripts/slave/recipes/v8/auto_roll_v8rel.py
+++ b/scripts/slave/recipes/v8/auto_roll_v8rel.py
@@ -4,6 +4,7 @@
DEPS = [
'depot_tools/bot_update',
+ 'depot_tools/infra_paths',
'chromium',
'depot_tools/gclient',
'depot_tools/git',
@@ -23,15 +24,15 @@ def RunSteps(api):
force=True, no_shallow=True, with_branch_heads=True)
api.step(
'V8Releases',
- [api.path['slave_build'].join(
+ [api.infra_paths['slave_build'].join(
'v8', 'tools', 'release', 'releases.py'),
'-c', api.path['checkout'],
- '--json', api.path['slave_build'].join('v8-releases-update.json'),
+ '--json', api.infra_paths['slave_build'].join('v8-releases-update.json'),
'--branch', 'recent',
- '--work-dir', api.path['slave_build'].join('workdir')],
- cwd=api.path['slave_build'].join('v8'),
+ '--work-dir', api.infra_paths['slave_build'].join('workdir')],
+ cwd=api.infra_paths['slave_build'].join('v8'),
)
- api.gsutil.upload(api.path['slave_build'].join('v8-releases-update.json'),
+ api.gsutil.upload(api.infra_paths['slave_build'].join('v8-releases-update.json'),
'chromium-v8-auto-roll',
api.path.join('v8rel', 'v8-releases-update.json'))

Powered by Google App Engine
This is Rietveld 408576698