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

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

Issue 1862083002: V8: Add s390 bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Mail notifier 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 fa7a6a1b932b9442ed46cc1e8a71fb2d1cff7098..76cc135f8931d6701d202de14107bb4954264ce4 100644
--- a/scripts/slave/recipe_modules/v8/builders.py
+++ b/scripts/slave/recipe_modules/v8/builders.py
@@ -1528,6 +1528,28 @@ BUILDERS = {
####### Waterfall: client.v8.ports
'client.v8.ports': {
'builders': {
+ 'V8 Linux - s390 - sim': {
+ 'chromium_apply_config': [
+ 'clang', 'v8_ninja', 'goma', 'simulate_s390'],
+ 'v8_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder_tester',
+ 'tests': [V8Testing],
+ 'testing': {'platform': 'linux'},
+ },
+ 'V8 Linux - s390x - sim': {
+ 'chromium_apply_config': [
+ 'clang', 'v8_ninja', 'goma', 'simulate_s390'],
+ 'v8_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
kjellander_chromium 2016/04/06 15:09:59 So the x in s390x means 64-bit?
Michael Achenbach 2016/04/06 16:03:18 s390x has 64 while s390 has 31 bits (yes 1). I don
Sergiy Byelozyorov 2016/04/06 16:42:07 Wow! How does this work?
Michael Achenbach 2016/04/06 17:36:44 The internet has probably a lot of reading materia
+ },
+ 'bot_type': 'builder_tester',
+ 'tests': [V8Testing],
+ 'testing': {'platform': 'linux'},
+ },
'V8 Linux - x87 - nosnap - debug builder': {
'v8_apply_config': ['no_snapshot'],
'chromium_apply_config': [

Powered by Google App Engine
This is Rietveld 408576698