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

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

Issue 1722573002: Make swarming dimensions for GPU bots explicit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-archive', 9 'build_gs_bucket': 'chromium-gpu-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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 steps.generate_gtest, 273 steps.generate_gtest,
274 steps.generate_script, 274 steps.generate_script,
275 steps.generate_isolated_script, 275 steps.generate_isolated_script,
276 ], 276 ],
277 'bot_type': 'tester', 277 'bot_type': 'tester',
278 'parent_buildername': 'GPU Mac Builder (dbg)', 278 'parent_buildername': 'GPU Mac Builder (dbg)',
279 'testing': { 279 'testing': {
280 'platform': 'mac', 280 'platform': 'mac',
281 }, 281 },
282 'enable_swarming': True, 282 'enable_swarming': True,
283 'swarming_dimensions': {
284 'os': 'Mac-10.10',
285 },
283 }, 286 },
284 'Mac Retina Release': { 287 'Mac Retina Release': {
285 'chromium_config': 'chromium', 288 'chromium_config': 'chromium',
286 'chromium_apply_config': ['ninja_confirm_noop'], 289 'chromium_apply_config': ['ninja_confirm_noop'],
287 'gclient_config': 'chromium', 290 'gclient_config': 'chromium',
288 'chromium_config_kwargs': { 291 'chromium_config_kwargs': {
289 'BUILD_CONFIG': 'Release', 292 'BUILD_CONFIG': 'Release',
290 'TARGET_BITS': 64, 293 'TARGET_BITS': 64,
291 }, 294 },
292 'test_generators': [ 295 'test_generators': [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 steps.generate_gtest, 336 steps.generate_gtest,
334 steps.generate_script, 337 steps.generate_script,
335 steps.generate_isolated_script, 338 steps.generate_isolated_script,
336 ], 339 ],
337 'bot_type': 'tester', 340 'bot_type': 'tester',
338 'parent_buildername': 'GPU Mac Builder', 341 'parent_buildername': 'GPU Mac Builder',
339 'testing': { 342 'testing': {
340 'platform': 'mac', 343 'platform': 'mac',
341 }, 344 },
342 'enable_swarming': True, 345 'enable_swarming': True,
346 'swarming_dimensions': {
347 'os': 'Mac-10.10',
348 },
343 }, 349 },
344 'Mac 10.10 Retina Debug (AMD)': { 350 'Mac 10.10 Retina Debug (AMD)': {
345 'chromium_config': 'chromium', 351 'chromium_config': 'chromium',
346 'chromium_apply_config': ['ninja_confirm_noop'], 352 'chromium_apply_config': ['ninja_confirm_noop'],
347 'gclient_config': 'chromium', 353 'gclient_config': 'chromium',
348 'chromium_config_kwargs': { 354 'chromium_config_kwargs': {
349 'BUILD_CONFIG': 'Debug', 355 'BUILD_CONFIG': 'Debug',
350 'TARGET_BITS': 64, 356 'TARGET_BITS': 64,
351 }, 357 },
352 'test_generators': [ 358 'test_generators': [
353 steps.generate_gtest, 359 steps.generate_gtest,
354 steps.generate_script, 360 steps.generate_script,
355 steps.generate_isolated_script, 361 steps.generate_isolated_script,
356 ], 362 ],
357 'bot_type': 'tester', 363 'bot_type': 'tester',
358 'parent_buildername': 'GPU Mac Builder (dbg)', 364 'parent_buildername': 'GPU Mac Builder (dbg)',
359 'testing': { 365 'testing': {
360 'platform': 'mac', 366 'platform': 'mac',
361 }, 367 },
362 'enable_swarming': True, 368 'enable_swarming': True,
369 'swarming_dimensions': {
370 'os': 'Mac-10.10',
371 },
363 }, 372 },
364 }, 373 },
365 } 374 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_tests/chromium_gpu_fyi.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698