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

Unified Diff: tools/bots/android.py

Issue 11264019: Set up Android build config. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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') | tools/bots/bot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/android.py
===================================================================
--- tools/bots/android.py (revision 0)
+++ tools/bots/android.py (working copy)
@@ -0,0 +1,55 @@
+#!/usr/bin/python
+
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""
+Android buildbot steps.
+"""
+
+import re
+import sys
+
+import bot
+
+ANDROID_BUILDER = r'vm-android-(linux|mac|win)'
+
+def AndroidConfig(name, is_buildbot):
+ """Returns info for the current buildbot based on the name of the builder.
+
+ Currently, this is just:
+ - mode: always "release" (for now)
+ - system: "linux", "mac", or "win"
+ """
+ android_pattern = re.match(ANDROID_BUILDER, name)
+ if not android_pattern:
+ return None
+
+ system = android_pattern.group(1)
+ if system == 'win': system = 'windows'
+
+ return bot.BuildInfo('none', 'vm', 'release', system, checked=True)
+
+
+def AndroidSteps(build_info):
+ # TODO(efortuna): Here's where we'll run tests.
+ #bot.RunTest('android', build_info, ['android'])
+ pass
+
+def BuildAndroid(build_info):
+ """
+ Builds the android target.
+
+ - build_info: the buildInfo object, containing information about what sort of
+ build and test to be run.
+ """
+ with bot.BuildStep('Build Android'):
+ targets = ['dart']
Emily Fortuna 2012/10/25 18:19:39 at graham's request -- pulling out the target(s) s
+ args = [sys.executable, './tools/build.py', '--mode=' + build_info.mode,
+ '--os=android ' + ' '.join(targets)]
+ print 'Building Android: %s' % (' '.join(args))
+ bot.RunProcess(args)
+
+if __name__ == '__main__':
+ bot.RunBot(AndroidConfig, AndroidSteps, build_step=BuildAndroid)
« no previous file with comments | « client/tools/buildbot_annotated_steps.py ('k') | tools/bots/bot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698