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

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

Issue 2119363003: V8: Add temporary bots to support gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 5 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 2f65056c34fbd0e534d935f4fe51a9a1d9f19fc1..ba3caceb4c9102178607e4379f6b989b27d9431d 100644
--- a/scripts/slave/recipe_modules/v8/builders.py
+++ b/scripts/slave/recipe_modules/v8/builders.py
@@ -503,6 +503,19 @@ BUILDERS = {
'tests': [Mjsunit],
'testing': {'platform': 'linux'},
},
+ 'V8 Linux64 - gyp': {
+ 'chromium_apply_config': [
+ 'v8_ninja', 'default_compiler', 'goma', 'mb',
+ ],
+ 'v8_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder_tester',
+ 'enable_swarming': True,
+ 'tests': [V8Testing],
+ 'testing': {'platform': 'linux'},
+ },
####### Category: Windows
'V8 Win32 - builder': {
'chromium_apply_config': [
@@ -1776,6 +1789,33 @@ BUILDERS = {
],
'testing': {'platform': 'linux'},
},
+ 'v8_linux64_gyp_rel_ng': {
+ 'chromium_apply_config': [
+ 'default_compiler', 'v8_ninja', 'goma', 'no_dcheck', 'mb'],
+ 'v8_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'enable_swarming': True,
+ 'slim_swarming_builder': True,
+ 'triggers': [
+ 'v8_linux64_gyp_rel_ng_triggered',
+ ],
+ 'testing': {'platform': 'linux'},
+ },
+ 'v8_linux64_gyp_rel_ng_triggered': {
+ 'chromium_apply_config': ['no_dcheck'],
Michael Achenbach 2016/07/06 09:58:29 No dchecks as we only have a continuous release bo
+ 'v8_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'v8_linux64_gyp_rel_ng',
+ 'enable_swarming': True,
+ 'tests': [V8Testing],
+ 'testing': {'platform': 'linux'},
+ },
'v8_linux64_avx2_rel_ng': {
'chromium_apply_config': [
'default_compiler', 'v8_ninja', 'goma', 'mb'],
« no previous file with comments | « masters/master.tryserver.v8/slaves.cfg ('k') | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64___gyp.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698