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

Unified Diff: scripts/slave/recipe_modules/chromium_tests/chromium_linux.py

Issue 2377933002: Add trusty builder / tester for chromium.linux. (Closed)
Patch Set: removed test generators Created 4 years, 2 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
index ed8cfb919c6cbc70895d605e0427bd7a4f7dd5cd..afc1958fb69d81a87ca190d001bd1204181285c7 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py
@@ -124,6 +124,118 @@ SPEC = {
'enable_swarming': True,
},
+ # for testing trusty
+ 'Linux Builder Trusty': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': [
+ 'mb',
+ 'ninja_confirm_noop',
+ 'archive_gpu_tests',
+ 'chrome_with_codecs'
+ ],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'compile_targets': [
+ 'chromium_swarm_tests',
+ ],
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'use_isolate': True,
+ 'enable_swarming': True,
+ 'checkout_dir': 'linux',
+ },
+ 'Linux Tests Trusty': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Linux Builder Trusty',
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'enable_swarming': True,
+ },
+ 'Linux Builder Trusty (dbg)(32)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'compile_targets': [
+ 'google_apis_unittests',
+ 'sync_integration_tests',
+ ],
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'use_isolate': True,
+ 'enable_swarming': True,
+ 'checkout_dir': 'linux',
+ # Temporary hack because the binaries are too large to be isolated.
+ 'GYP_DEFINES': {
+ 'fastbuild': 2,
+ },
+ },
+ 'Linux Tests Trusty (dbg)(1)(32)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Linux Builder Trusty (dbg)(32)',
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'enable_swarming': True,
+ },
+
+ 'Linux Builder Trusty (dbg)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'enable_swarming': True,
+ 'use_isolate': True,
+ 'checkout_dir': 'linux',
+ },
+ 'Linux Tests Trusty (dbg)(1)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Linux Builder Trusty (dbg)',
+ 'testing': {
+ 'platform': 'linux',
+ },
+ 'enable_swarming': True,
+ },
+
'Android Arm64 Builder (dbg)': {
'chromium_config': 'android',
'chromium_apply_config': ['chrome_with_codecs', 'mb'],
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698