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

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

Issue 1212443005: reland #1: Set mac_min_sdk=10.10 on chromium.mac bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Updated CL to prevent build configs from being used by testers. Created 5 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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-mac-archive', 9 'build_gs_bucket': 'chromium-mac-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.
11 # Usage not covered by chromium CQ is not supported and can break 11 # Usage not covered by chromium CQ is not supported and can break
12 # without notice. 12 # without notice.
13 'src_side_runtest_py': True, 13 'src_side_runtest_py': True,
14 }, 14 },
15 'builders': { 15 'builders': {
16 'Mac Builder': { 16 'Mac Builder': {
17 'chromium_config': 'chromium', 17 'chromium_config': 'chromium',
18 'chromium_apply_config': ['chromium_mac_sdk_10_10'],
18 'gclient_config': 'chromium', 19 'gclient_config': 'chromium',
19 'chromium_config_kwargs': { 20 'chromium_config_kwargs': {
20 'BUILD_CONFIG': 'Release', 21 'BUILD_CONFIG': 'Release',
21 'TARGET_BITS': 64, 22 'TARGET_BITS': 64,
22 }, 23 },
23 'bot_type': 'builder', 24 'bot_type': 'builder',
24 'compile_targets': [ 25 'compile_targets': [
25 'chromium_builder_tests', 26 'chromium_builder_tests',
26 ], 27 ],
27 'testing': { 28 'testing': {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 steps.generate_gtest, 123 steps.generate_gtest,
123 steps.generate_script, 124 steps.generate_script,
124 ], 125 ],
125 'enable_swarming': True, 126 'enable_swarming': True,
126 'testing': { 127 'testing': {
127 'platform': 'mac', 128 'platform': 'mac',
128 }, 129 },
129 }, 130 },
130 'Mac Builder (dbg)': { 131 'Mac Builder (dbg)': {
131 'chromium_config': 'chromium', 132 'chromium_config': 'chromium',
133 'chromium_apply_config': ['chromium_mac_sdk_10_10'],
132 'gclient_config': 'chromium', 134 'gclient_config': 'chromium',
133 'chromium_config_kwargs': { 135 'chromium_config_kwargs': {
134 'BUILD_CONFIG': 'Debug', 136 'BUILD_CONFIG': 'Debug',
135 'TARGET_BITS': 64, 137 'TARGET_BITS': 64,
136 }, 138 },
137 'bot_type': 'builder', 139 'bot_type': 'builder',
138 'compile_targets': [ 140 'compile_targets': [
139 'chromium_builder_tests', 141 'chromium_builder_tests',
140 ], 142 ],
141 'testing': { 143 'testing': {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 steps.generate_gtest, 179 steps.generate_gtest,
178 steps.generate_script, 180 steps.generate_script,
179 ], 181 ],
180 'enable_swarming': True, 182 'enable_swarming': True,
181 'testing': { 183 'testing': {
182 'platform': 'mac', 184 'platform': 'mac',
183 }, 185 },
184 }, 186 },
185 }, 187 },
186 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698