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

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

Issue 2472073002: V8: Switch some port builders to swarming (Closed)
Patch Set: Review 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..1248a7152a34f5c9b1e08ae481ece053a56b260f 100644
--- a/scripts/slave/recipe_modules/v8/builders.py
+++ b/scripts/slave/recipe_modules/v8/builders.py
@@ -73,6 +73,12 @@ def with_test_args(suffix, test_args, tests, variants=V8VariantNeutral):
]
+SWARMING_FYI_PROPS = {
+ 'default_expiration': 2 * 60 * 60,
+ 'default_hard_timeout': 60 * 60,
+ 'default_priority': 35,
+}
+
BUILDERS = {
####### Waterfall: client.v8
'client.v8': {
@@ -1530,6 +1536,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 +1562,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': {
+ 'os': 'Ubuntu-14.04',
+ },
},
####### Category: PPC
'V8 Linux - ppc - sim': {
@@ -1567,8 +1578,13 @@ 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': SWARMING_FYI_PROPS,
},
'V8 Linux - ppc64 - sim': {
'chromium_apply_config': [
@@ -1578,8 +1594,13 @@ 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': SWARMING_FYI_PROPS,
},
####### Category: S390
'V8 Linux - s390 - sim': {
@@ -1590,8 +1611,13 @@ 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': SWARMING_FYI_PROPS,
},
'V8 Linux - s390x - sim': {
'chromium_apply_config': [
@@ -1601,8 +1627,13 @@ 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': SWARMING_FYI_PROPS,
},
####### 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