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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-gpu-fyi-archive', 9 'build_gs_bucket': 'chromium-gpu-fyi-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
11 # Usage not covered by chromium CQ is not supported and can break 11 # Usage not covered by chromium CQ is not supported and can break
12 # without notice. 12 # without notice.
13 'src_side_runtest_py': True, 13 'src_side_runtest_py': True,
14 }, 14 },
15 'builders': { 15 'builders': {
16 'GPU NextGen Win Builder': {
17 'chromium_config': 'chromium',
18 'chromium_apply_config': ['ninja_confirm_noop', 'archive_gpu_tests',
19 'chrome_with_codecs',
20 'internal_gles2_conform_tests'],
21 'gclient_config': 'chromium',
22 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
23 'chromium_config_kwargs': {
24 'BUILD_CONFIG': 'Release',
25 'TARGET_BITS': 32,
26 },
27 'bot_type': 'builder',
28 'compile_targets': [
29 ],
30 'testing': {
31 'platform': 'win',
32 },
33 'enable_swarming': True,
34 'use_isolate': True,
35 },
36 'GPU NextGen Win Builder (dbg)': {
37 'chromium_config': 'chromium',
38 'chromium_apply_config': ['ninja_confirm_noop', 'archive_gpu_tests',
39 'chrome_with_codecs',
40 'internal_gles2_conform_tests'],
41 'gclient_config': 'chromium',
42 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
43 'chromium_config_kwargs': {
44 'BUILD_CONFIG': 'Debug',
45 'TARGET_BITS': 32,
46 },
47 'bot_type': 'builder',
48 'compile_targets': [
49 ],
50 'testing': {
51 'platform': 'win',
52 },
53 'enable_swarming': True,
54 'use_isolate': True,
55 },
56 'Win7 NextGen Release (NVIDIA)': {
57 'chromium_config': 'chromium',
58 'chromium_apply_config': ['ninja_confirm_noop'],
59 'gclient_config': 'chromium',
60 'chromium_config_kwargs': {
61 'BUILD_CONFIG': 'Release',
62 'TARGET_BITS': 32,
63 },
64 'bot_type': 'tester',
65 'test_generators': [
66 steps.generate_gtest,
67 steps.generate_script,
68 steps.generate_isolated_script,
69 ],
70 'parent_buildername': 'GPU NextGen Win Builder',
71 'testing': {
72 'platform': 'win',
73 },
74 'enable_swarming': True,
75 },
76 'Win7 NextGen Debug (NVIDIA)': {
77 'chromium_config': 'chromium',
78 'chromium_apply_config': ['ninja_confirm_noop'],
79 'gclient_config': 'chromium',
80 'chromium_config_kwargs': {
81 'BUILD_CONFIG': 'Debug',
82 'TARGET_BITS': 32,
83 },
84 'bot_type': 'tester',
85 'test_generators': [
86 steps.generate_gtest,
87 steps.generate_script,
88 steps.generate_isolated_script,
89 ],
90 'parent_buildername': 'GPU NextGen Win Builder (dbg)',
91 'testing': {
92 'platform': 'win',
93 },
94 'enable_swarming': True,
95 },
16 'GPU NextGen Linux Builder': { 96 'GPU NextGen Linux Builder': {
17 'chromium_config': 'chromium', 97 'chromium_config': 'chromium',
18 'chromium_apply_config': ['mb', 'ninja_confirm_noop', 98 'chromium_apply_config': ['mb', 'ninja_confirm_noop',
19 'archive_gpu_tests', 'chrome_with_codecs', 99 'archive_gpu_tests', 'chrome_with_codecs',
20 'internal_gles2_conform_tests'], 100 'internal_gles2_conform_tests'],
21 'gclient_config': 'chromium', 101 'gclient_config': 'chromium',
22 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'], 102 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
23 'chromium_config_kwargs': { 103 'chromium_config_kwargs': {
24 'BUILD_CONFIG': 'Release', 104 'BUILD_CONFIG': 'Release',
25 'TARGET_BITS': 64, 105 'TARGET_BITS': 64,
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 ], 248 ],
169 'bot_type': 'tester', 249 'bot_type': 'tester',
170 'parent_buildername': 'GPU NextGen Mac Builder (dbg)', 250 'parent_buildername': 'GPU NextGen Mac Builder (dbg)',
171 'testing': { 251 'testing': {
172 'platform': 'mac', 252 'platform': 'mac',
173 }, 253 },
174 'enable_swarming': True, 254 'enable_swarming': True,
175 }, 255 },
176 }, 256 },
177 } 257 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698