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

Unified Diff: tools/bots/editor.py

Issue 12674025: Add java to PATH on windows bots and run ia32 editor tests instead of x64 on windows (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « client/tools/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/editor.py
diff --git a/tools/bots/editor.py b/tools/bots/editor.py
index 43403da42813caf0c5944f9212257b67c7c7dd0f..4e4e02e96ec9e0740cf97759f7cb2eaab7d9796a 100755
--- a/tools/bots/editor.py
+++ b/tools/bots/editor.py
@@ -35,6 +35,9 @@ def main():
build_py = os.path.join('tools', 'build.py')
architectures = ['ia32', 'x64']
test_architectures = ['x64']
+ if sys.platform == 'win32':
+ # Our windows bots pull in only a 32 bit JVM.
+ test_architectures = ['ia32']
for arch in architectures:
with bot.BuildStep('Build Editor %s' % arch):
« no previous file with comments | « client/tools/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698