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

Unified Diff: infra/bots/common.py

Issue 1759553003: Swarming bots: setup for skipping download of build products (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix compile_skia out dir Created 4 years, 10 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
« no previous file with comments | « infra/bots/add_isolated_input.py ('k') | infra/bots/compile_skia.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/common.py
diff --git a/infra/bots/common.py b/infra/bots/common.py
index b532d5db55eb1f81b82eb47b0e6cce13d0c455ef..31f1f824af42a65814aafd896ba6c547446c44dd 100644
--- a/infra/bots/common.py
+++ b/infra/bots/common.py
@@ -155,9 +155,9 @@ class BotInfo(object):
self.spec = self.get_bot_spec(bot_name)
self.bot_cfg = self.spec['builder_cfg']
if self.bot_cfg['role'] == 'Build':
- self.out_dir = swarm_out_dir
+ self.out_dir = os.path.join(swarm_out_dir, 'out')
else:
- self.out_dir = os.path.join(self.skia_dir, 'out', self.name)
+ self.out_dir = os.path.join(os.pardir, 'out')
self.configuration = self.spec['configuration']
self.default_env = {
'SKIA_OUT': self.out_dir,
« no previous file with comments | « infra/bots/add_isolated_input.py ('k') | infra/bots/compile_skia.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698