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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py

Issue 1890273002: Decommission old Win and Linux Intel GPU bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 8 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.
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 steps.generate_gtest, 175 steps.generate_gtest,
176 steps.generate_script, 176 steps.generate_script,
177 steps.generate_isolated_script, 177 steps.generate_isolated_script,
178 ], 178 ],
179 'parent_buildername': 'GPU Win Builder (dbg)', 179 'parent_buildername': 'GPU Win Builder (dbg)',
180 'testing': { 180 'testing': {
181 'platform': 'win', 181 'platform': 'win',
182 }, 182 },
183 'enable_swarming': True, 183 'enable_swarming': True,
184 }, 184 },
185 'Win7 Release (Intel)': {
186 'chromium_config': 'chromium',
187 'chromium_apply_config': ['ninja_confirm_noop'],
188 'gclient_config': 'chromium',
189 'chromium_config_kwargs': {
190 'BUILD_CONFIG': 'Release',
191 'TARGET_BITS': 32,
192 },
193 'bot_type': 'tester',
194 'test_generators': [
195 steps.generate_gtest,
196 steps.generate_script,
197 steps.generate_isolated_script,
198 ],
199 'parent_buildername': 'GPU Win Builder',
200 'testing': {
201 'platform': 'win',
202 },
203 # Swarming is deliberately NOT enabled on this one-off configuration.
204 # The GPU detection wasn't initially working (crbug.com/580331), and
205 # multiple copies of the machines have to be deployed into swarming
206 # in order to keep up with the faster cycle time of the tests.
207 'enable_swarming': False,
208 },
209 'Win7 Release (NVIDIA GeForce 730)': { 185 'Win7 Release (NVIDIA GeForce 730)': {
210 'chromium_config': 'chromium', 186 'chromium_config': 'chromium',
211 'chromium_apply_config': ['ninja_confirm_noop'], 187 'chromium_apply_config': ['ninja_confirm_noop'],
212 'gclient_config': 'chromium', 188 'gclient_config': 'chromium',
213 'chromium_config_kwargs': { 189 'chromium_config_kwargs': {
214 'BUILD_CONFIG': 'Release', 190 'BUILD_CONFIG': 'Release',
215 'TARGET_BITS': 32, 191 'TARGET_BITS': 32,
216 }, 192 },
217 'bot_type': 'tester', 193 'bot_type': 'tester',
218 'test_generators': [ 194 'test_generators': [
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 steps.generate_gtest, 420 steps.generate_gtest,
445 steps.generate_script, 421 steps.generate_script,
446 steps.generate_isolated_script, 422 steps.generate_isolated_script,
447 ], 423 ],
448 'parent_buildername': 'GPU Linux Builder', 424 'parent_buildername': 'GPU Linux Builder',
449 'testing': { 425 'testing': {
450 'platform': 'linux', 426 'platform': 'linux',
451 }, 427 },
452 'enable_swarming': True, 428 'enable_swarming': True,
453 }, 429 },
454 'Linux Release (Intel Graphics Stack)': {
455 'chromium_config': 'chromium',
456 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
457 'gclient_config': 'chromium',
458 'chromium_config_kwargs': {
459 'BUILD_CONFIG': 'Release',
460 'TARGET_BITS': 64,
461 },
462 'bot_type': 'tester',
463 'test_generators': [
464 steps.generate_gtest,
465 steps.generate_script,
466 steps.generate_isolated_script,
467 ],
468 'parent_buildername': 'GPU Linux Builder',
469 'testing': {
470 'platform': 'linux',
471 },
472 # Swarming is deliberately NOT enabled on this one-off configuration.
473 # Multiple copies of the machines have to be deployed into swarming
474 # in order to keep up with the faster cycle time of the tests.
475 'enable_swarming': False,
476 },
477 'Linux Release (ATI)': { 430 'Linux Release (ATI)': {
478 'chromium_config': 'chromium', 431 'chromium_config': 'chromium',
479 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 432 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
480 'gclient_config': 'chromium', 433 'gclient_config': 'chromium',
481 'chromium_config_kwargs': { 434 'chromium_config_kwargs': {
482 'BUILD_CONFIG': 'Release', 435 'BUILD_CONFIG': 'Release',
483 'TARGET_BITS': 64, 436 'TARGET_BITS': 64,
484 }, 437 },
485 'bot_type': 'tester', 438 'bot_type': 'tester',
486 'test_generators': [ 439 'test_generators': [
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 'aura_builder', 921 'aura_builder',
969 ], 922 ],
970 'testing': { 923 'testing': {
971 'platform': 'linux', 924 'platform': 'linux',
972 }, 925 },
973 'enable_swarming': False, 926 'enable_swarming': False,
974 'use_isolate': True, 927 'use_isolate': True,
975 }, 928 },
976 }, 929 },
977 } 930 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698