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

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

Issue 2472073002: V8: Switch some port builders to swarming (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_ports_V8_Linux___mipsel___sim.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a4c6778dabc273ea07212cb3bd0aa512b82ce651..916ac1fbfde518ebb217e71890bfc458d17a124e 100644
--- a/scripts/slave/recipe_modules/v8/builders.py
+++ b/scripts/slave/recipe_modules/v8/builders.py
@@ -1530,6 +1530,7 @@ BUILDERS = {
},
'bot_type': 'builder',
'build_gs_archive': 'mipsel_sim_rel_archive',
+ 'enable_swarming': True,
'testing': {'platform': 'linux'},
'triggers': [
'V8 Linux - mipsel - sim',
@@ -1555,8 +1556,12 @@ BUILDERS = {
'bot_type': 'tester',
'parent_buildername': 'V8 Linux - mipsel - sim - builder',
'build_gs_archive': 'mipsel_sim_rel_archive',
- 'tests': [V8Testing, Test262, SimdJs],
+ 'enable_swarming': True,
+ 'tests': [V8Testing_2, Test262, SimdJs],
'testing': {'platform': 'linux'},
+ 'swarming_dimensions': {
Michael Achenbach 2016/11/03 11:34:44 As soon as trusty is the default, I'll remove all
+ 'os': 'Ubuntu-14.04',
+ },
},
####### Category: PPC
'V8 Linux - ppc - sim': {
@@ -1567,8 +1572,17 @@ BUILDERS = {
'TARGET_BITS': 32,
},
'bot_type': 'builder_tester',
- 'tests': [V8Testing],
+ 'enable_swarming': True,
+ 'tests': [V8Testing_2],
'testing': {'platform': 'linux'},
+ 'swarming_dimensions': {
+ 'os': 'Ubuntu-14.04',
+ },
+ 'swarming_properties': {
+ 'default_expiration': 2 * 60 * 60,
kjellander_chromium 2016/11/03 12:57:32 It looks like you could extract these into constan
Michael Achenbach 2016/11/03 13:09:45 Done for some of them. There are more in this file
+ 'default_hard_timeout': 60 * 60,
+ 'default_priority': 35,
+ },
},
'V8 Linux - ppc64 - sim': {
'chromium_apply_config': [
@@ -1578,8 +1592,17 @@ BUILDERS = {
'TARGET_BITS': 64,
},
'bot_type': 'builder_tester',
- 'tests': [V8Testing],
+ 'enable_swarming': True,
+ 'tests': [V8Testing_2],
'testing': {'platform': 'linux'},
+ 'swarming_dimensions': {
+ 'os': 'Ubuntu-14.04',
+ },
+ 'swarming_properties': {
+ 'default_expiration': 2 * 60 * 60,
+ 'default_hard_timeout': 60 * 60,
+ 'default_priority': 35,
+ },
},
####### Category: S390
'V8 Linux - s390 - sim': {
@@ -1590,8 +1613,17 @@ BUILDERS = {
'TARGET_BITS': 32,
},
'bot_type': 'builder_tester',
- 'tests': [V8Testing],
+ 'enable_swarming': True,
+ 'tests': [V8Testing_2],
'testing': {'platform': 'linux'},
+ 'swarming_dimensions': {
+ 'os': 'Ubuntu-14.04',
+ },
+ 'swarming_properties': {
+ 'default_expiration': 2 * 60 * 60,
+ 'default_hard_timeout': 60 * 60,
+ 'default_priority': 35,
+ },
},
'V8 Linux - s390x - sim': {
'chromium_apply_config': [
@@ -1601,8 +1633,17 @@ BUILDERS = {
'TARGET_BITS': 64,
},
'bot_type': 'builder_tester',
- 'tests': [V8Testing],
+ 'enable_swarming': True,
+ 'tests': [V8Testing_2],
'testing': {'platform': 'linux'},
+ 'swarming_dimensions': {
+ 'os': 'Ubuntu-14.04',
+ },
+ 'swarming_properties': {
+ 'default_expiration': 2 * 60 * 60,
+ 'default_hard_timeout': 60 * 60,
+ 'default_priority': 35,
+ },
},
####### Category: X87
'V8 Linux - x87 - nosnap - debug builder': {
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_ports_V8_Linux___mipsel___sim.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698