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

Unified Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1921603002: V8: Add branch bots for s390 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: A comma 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/v8/builders.py
diff --git a/scripts/slave/recipe_modules/v8/builders.py b/scripts/slave/recipe_modules/v8/builders.py
index 7331f9f4ffe4c0568aa2325fa5f595d9e092a151..e188e3cbd33b1c56c93d536e867ddc9b500f281b 100644
--- a/scripts/slave/recipe_modules/v8/builders.py
+++ b/scripts/slave/recipe_modules/v8/builders.py
@@ -2448,6 +2448,16 @@ for branch_name in ('stable branch', 'beta branch'):
'Release', 'intel', 64, unittests_only=True)
BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_ppc')
+ name = 'V8 s390 - sim - %s' % branch_name
+ BRANCH_BUILDERS[name] = AddBranchBuilder(
+ 'Release', 'intel', 32, unittests_only=True)
+ BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_s390')
+
+ name = 'V8 s390x - sim - %s' % branch_name
+ BRANCH_BUILDERS[name] = AddBranchBuilder(
+ 'Release', 'intel', 64, unittests_only=True)
+ BRANCH_BUILDERS[name]['chromium_apply_config'].append('simulate_s390')
+
BUILDERS['client.v8.branches'] = {'builders': BRANCH_BUILDERS}
BUILDERS['client.dart.fyi'] = {'builders': {

Powered by Google App Engine
This is Rietveld 408576698