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

Unified Diff: infra/bots/recipes/swarm_test.py

Issue 2209423002: [recipes] Remove build environment vars from default_env (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec_fix_coverage
Patch Set: [recipes] Remove build environment vars from default_env Created 4 years, 4 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: infra/bots/recipes/swarm_test.py
diff --git a/infra/bots/recipes/swarm_test.py b/infra/bots/recipes/swarm_test.py
index e219e72cee9209633a688030f01e29f2211a422c..2324140462137ff44ec320f5c97a7f982919779a 100644
--- a/infra/bots/recipes/swarm_test.py
+++ b/infra/bots/recipes/swarm_test.py
@@ -163,11 +163,11 @@ def test_steps(api):
skip_flag = '--nocpu'
if skip_flag:
args.append(skip_flag)
- args.extend(api.vars.dm_flags)
+ args.extend(api.vars.builder_spec['dm_flags'])
api.run(api.flavor.step, 'dm', cmd=args,
- abort_on_failure=False,
- env=api.vars.default_env)
+ abort_on_failure=False,
+ env=api.vars.default_env)
if api.vars.upload_dm_results:
# Copy images and JSON to host machine if needed.

Powered by Google App Engine
This is Rietveld 408576698