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

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

Issue 2254063002: Deploy Linux slave with AMD R7 240 to chromium.gpu.fyi. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 ], 572 ],
573 'parent_buildername': 'GPU Linux Builder (dbg)', 573 'parent_buildername': 'GPU Linux Builder (dbg)',
574 'testing': { 574 'testing': {
575 'platform': 'linux', 575 'platform': 'linux',
576 }, 576 },
577 # Swarming is deliberately NOT enabled on this one-off configuration. 577 # Swarming is deliberately NOT enabled on this one-off configuration.
578 # Multiple copies of the machines have to be deployed into swarming 578 # Multiple copies of the machines have to be deployed into swarming
579 # in order to keep up with the faster cycle time of the tests. 579 # in order to keep up with the faster cycle time of the tests.
580 'enable_swarming': False, 580 'enable_swarming': False,
581 }, 581 },
582 'Linux Release (AMD R7 240)': {
583 'chromium_config': 'chromium',
584 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
585 'gclient_config': 'chromium',
586 'chromium_config_kwargs': {
587 'BUILD_CONFIG': 'Release',
588 'TARGET_BITS': 64,
589 },
590 'bot_type': 'tester',
591 'test_generators': [
592 steps.generate_gtest,
593 steps.generate_script,
594 steps.generate_isolated_script,
595 ],
596 'parent_buildername': 'GPU Linux Builder',
597 'testing': {
598 'platform': 'linux',
599 },
600 # Swarming is deliberately NOT enabled on this one-off configuration.
601 # Multiple copies of the machines have to be deployed into swarming
602 # in order to keep up with the faster cycle time of the tests.
603 'enable_swarming': False,
604 },
582 'GPU Mac Builder': { 605 'GPU Mac Builder': {
583 'chromium_config': 'chromium', 606 'chromium_config': 'chromium',
584 'chromium_apply_config':['archive_gpu_tests', 607 'chromium_apply_config':['archive_gpu_tests',
585 'chrome_with_codecs', 608 'chrome_with_codecs',
586 'internal_gles2_conform_tests', 609 'internal_gles2_conform_tests',
587 'mb', 610 'mb',
588 'ninja_confirm_noop',], 611 'ninja_confirm_noop',],
589 'gclient_config': 'chromium', 612 'gclient_config': 'chromium',
590 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'], 613 'gclient_apply_config': ['chrome_internal', 'angle_top_of_tree'],
591 'chromium_config_kwargs': { 614 'chromium_config_kwargs': {
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 'aura_builder', 1147 'aura_builder',
1125 ], 1148 ],
1126 'testing': { 1149 'testing': {
1127 'platform': 'linux', 1150 'platform': 'linux',
1128 }, 1151 },
1129 'enable_swarming': False, 1152 'enable_swarming': False,
1130 'use_isolate': True, 1153 'use_isolate': True,
1131 }, 1154 },
1132 }, 1155 },
1133 } 1156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698