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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/api.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/recipe_modules/auto_bisect/api.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/api.py b/scripts/slave/recipe_modules/auto_bisect/api.py
index 1ec602ae2a659fa2eccdcec6e89d4e6616e55118..48cc717c87f7b1f15caf584a3995786e7c0450aa 100644
--- a/scripts/slave/recipe_modules/auto_bisect/api.py
+++ b/scripts/slave/recipe_modules/auto_bisect/api.py
@@ -162,7 +162,7 @@ class AutoBisectApi(recipe_api.RecipeApi):
'Preparing for Bisection',
script=self.m.path['checkout'].join(
'tools', 'prepare-bisect-perf-regression.py'),
- args=['-w', self.m.infra_paths['slave_build']])
+ args=['-w', self.m.path['slave_build']])
args = []
kwargs['allow_subannotations'] = True
@@ -178,14 +178,14 @@ class AutoBisectApi(recipe_api.RecipeApi):
args = args + ['--path_to_config', kwargs.pop('path_to_config')]
if self.m.chromium.c.TARGET_PLATFORM != 'android':
# TODO(phajdan.jr): update for swarming, http://crbug.com/585401 .
- args += ['--path_to_goma', self.m.infra_paths['build'].join('goma')]
+ args += ['--path_to_goma', self.m.path['build'].join('goma')]
args += [
'--build-properties',
self.m.json.dumps(dict(self.m.properties.legacy())),
]
self.m.chromium.runtest(
self.m.path['checkout'].join('tools', 'run-bisect-perf-regression.py'),
- ['-w', self.m.infra_paths['slave_build']] + args,
+ ['-w', self.m.path['slave_build']] + args,
name='Running Bisection',
xvfb=True, **kwargs)
« no previous file with comments | « scripts/slave/recipe_modules/auto_bisect/__init__.py ('k') | scripts/slave/recipe_modules/auto_bisect/bisector.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698