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

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

Issue 2162343002: tryserver.chromium.linux: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 'builders': { 8 'builders': {
9 'Win': { 9 'Win': {
10 'chromium_config': 'chromium', 10 'chromium_config': 'chromium',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 'TARGET_BITS': 64, 111 'TARGET_BITS': 64,
112 }, 112 },
113 'test_generators': [ 113 'test_generators': [
114 steps.generate_gtest, 114 steps.generate_gtest,
115 steps.generate_script, 115 steps.generate_script,
116 steps.generate_isolated_script, 116 steps.generate_isolated_script,
117 ], 117 ],
118 'archive_build': True, 118 'archive_build': True,
119 'gs_bucket': 'chromium-browser-snapshots', 119 'gs_bucket': 'chromium-browser-snapshots',
120 'gs_acl': 'public-read', 120 'gs_acl': 'public-read',
121 'checkout_dir': 'linux_clobber',
Paweł Hajdan Jr. 2016/07/20 10:53:59 This is where we set a different checkout for clob
tandrii(chromium) 2016/07/20 11:13:42 Acknowledged.
121 'testing': { 122 'testing': {
122 'platform': 'linux', 123 'platform': 'linux',
123 }, 124 },
124 }, 125 },
125 'Android': { 126 'Android': {
126 'chromium_config': 'android', 127 'chromium_config': 'android',
127 'chromium_apply_config': [ 128 'chromium_apply_config': [
128 'clobber', 129 'clobber',
129 'isolation_mode_noop', 130 'isolation_mode_noop',
130 'mb', 131 'mb',
(...skipping 17 matching lines...) Expand all
148 ], 149 ],
149 'archive_build': True, 150 'archive_build': True,
150 'gs_bucket': 'chromium-browser-snapshots', 151 'gs_bucket': 'chromium-browser-snapshots',
151 'gs_acl': 'public-read', 152 'gs_acl': 'public-read',
152 'testing': { 153 'testing': {
153 'platform': 'linux', 154 'platform': 'linux',
154 }, 155 },
155 }, 156 },
156 }, 157 },
157 } 158 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698