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

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

Issue 1574433004: Allow a single trybot to mirror multiple waterfall bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@bot-config-and-test-db
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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from . import steps
6
7 SPEC = {
8 'settings': {
9 'build_gs_bucket': 'chromium-gpu-archive',
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
12 # without notice.
13 'src_side_runtest_py': True,
14 },
15 'builders': {
16 'GPU Fake Linux Builder': {
17 'chromium_config': 'chromium',
18 'chromium_apply_config': ['mb', 'ninja_confirm_noop',
19 'archive_gpu_tests', 'chrome_with_codecs' ],
20 'gclient_config': 'chromium',
21 'chromium_config_kwargs': {
22 'BUILD_CONFIG': 'Release',
23 'TARGET_BITS': 64,
24 },
25 'bot_type': 'builder',
26 'compile_targets': [
27 ],
28 'testing': {
29 'platform': 'linux',
30 },
31 'use_isolate': True,
32 'enable_swarming': True,
33 },
34 'Fake Linux Release (NVIDIA)': {
35 'chromium_config': 'chromium',
36 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
37 'gclient_config': 'chromium',
38 'chromium_config_kwargs': {
39 'BUILD_CONFIG': 'Release',
40 'TARGET_BITS': 64,
41 },
42 'bot_type': 'tester',
43 'test_generators': [
44 steps.generate_gtest,
45 steps.generate_script,
46 steps.generate_isolated_script,
47 ],
48 'parent_buildername': 'GPU Fake Linux Builder',
49 'testing': {
50 'platform': 'linux',
51 },
52 'enable_swarming': True,
53 },
54 },
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698