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

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