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

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

Issue 1561333003: Deploy new Windows GPU FYI slaves running Chromium recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 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/chromium_tests/chromium_gpu_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py
index 6198a43ea885d63de02126b0709126ff09100f16..f67a21d71a23d90de4123d89d357bd8608ecd9d8 100644
--- a/scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py
+++ b/scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py
@@ -13,6 +13,86 @@ SPEC = {
'src_side_runtest_py': True,
},
'builders': {
+ 'GPU NextGen Win Builder': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['ninja_confirm_noop', 'archive_gpu_tests',
+ 'chrome_with_codecs',
+ 'internal_gles2_conform_tests'],
+ 'gclient_config': 'chromium',
+ 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'compile_targets': [
+ ],
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'enable_swarming': True,
+ 'use_isolate': True,
+ },
+ 'GPU NextGen Win Builder (dbg)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['ninja_confirm_noop', 'archive_gpu_tests',
+ 'chrome_with_codecs',
+ 'internal_gles2_conform_tests'],
+ 'gclient_config': 'chromium',
+ 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'compile_targets': [
+ ],
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'enable_swarming': True,
+ 'use_isolate': True,
+ },
+ 'Win7 NextGen Release (NVIDIA)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'tester',
+ 'test_generators': [
+ steps.generate_gtest,
+ steps.generate_script,
+ steps.generate_isolated_script,
+ ],
+ 'parent_buildername': 'GPU NextGen Win Builder',
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'enable_swarming': True,
+ },
+ 'Win7 NextGen Debug (NVIDIA)': {
+ 'chromium_config': 'chromium',
+ 'chromium_apply_config': ['ninja_confirm_noop'],
+ 'gclient_config': 'chromium',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'tester',
+ 'test_generators': [
+ steps.generate_gtest,
+ steps.generate_script,
+ steps.generate_isolated_script,
+ ],
+ 'parent_buildername': 'GPU NextGen Win Builder (dbg)',
+ 'testing': {
+ 'platform': 'win',
+ },
+ 'enable_swarming': True,
+ },
'GPU NextGen Linux Builder': {
'chromium_config': 'chromium',
'chromium_apply_config': ['mb', 'ninja_confirm_noop',

Powered by Google App Engine
This is Rietveld 408576698