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

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

Issue 693183004: Disable swarming for the new 10.9 testers, since there's no swarming bots yet. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json » ('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 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 }, 10 },
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'TARGET_BITS': 32, 52 'TARGET_BITS': 32,
53 }, 53 },
54 'test_generators': [ 54 'test_generators': [
55 steps.generate_gtest, 55 steps.generate_gtest,
56 steps.generate_script, 56 steps.generate_script,
57 ], 57 ],
58 'bot_type': 'tester', 58 'bot_type': 'tester',
59 'parent_buildername': 'Mac Builder', 59 'parent_buildername': 'Mac Builder',
60 'testing': { 60 'testing': {
61 'platform': 'mac', 61 'platform': 'mac',
62 },
63 'enable_swarming': True,
64 'swarming_dimensions': {
62 'os': 'Mac-10.8', 65 'os': 'Mac-10.8',
63 }, 66 },
64 'enable_swarming': True,
65 }, 67 },
66 'Mac10.9 Tests': { 68 'Mac10.9 Tests': {
67 'recipe_config': 'chromium', 69 'recipe_config': 'chromium',
68 'chromium_config_kwargs': { 70 'chromium_config_kwargs': {
69 'BUILD_CONFIG': 'Release', 71 'BUILD_CONFIG': 'Release',
70 'TARGET_BITS': 32, 72 'TARGET_BITS': 32,
71 }, 73 },
72 'test_generators': [ 74 'test_generators': [
73 steps.generate_gtest, 75 steps.generate_gtest,
74 steps.generate_script, 76 steps.generate_script,
75 ], 77 ],
76 'bot_type': 'tester', 78 'bot_type': 'tester',
77 'parent_buildername': 'Mac Builder', 79 'parent_buildername': 'Mac Builder',
78 'testing': { 80 'testing': {
79 'platform': 'mac', 81 'platform': 'mac',
82 },
83 'enable_swarming': False,
84 'swarming_dimensions': {
80 'os': 'Mac-10.9', 85 'os': 'Mac-10.9',
81 }, 86 },
82 'enable_swarming': True,
83 }, 87 },
84 'Mac Builder (dbg)': { 88 'Mac Builder (dbg)': {
85 'recipe_config': 'chromium', 89 'recipe_config': 'chromium',
86 'chromium_config_kwargs': { 90 'chromium_config_kwargs': {
87 'BUILD_CONFIG': 'Debug', 91 'BUILD_CONFIG': 'Debug',
88 'TARGET_BITS': 32, 92 'TARGET_BITS': 32,
89 }, 93 },
90 'bot_type': 'builder', 94 'bot_type': 'builder',
91 'compile_targets': [ 95 'compile_targets': [
92 'chromium_builder_tests', 96 'chromium_builder_tests',
(...skipping 12 matching lines...) Expand all
105 }, 109 },
106 'test_generators': [ 110 'test_generators': [
107 steps.generate_gtest, 111 steps.generate_gtest,
108 steps.generate_script, 112 steps.generate_script,
109 ], 113 ],
110 'bot_type': 'tester', 114 'bot_type': 'tester',
111 'parent_buildername': 'Mac Builder (dbg)', 115 'parent_buildername': 'Mac Builder (dbg)',
112 'testing': { 116 'testing': {
113 'platform': 'mac', 117 'platform': 'mac',
114 }, 118 },
115 'enable_swarming': True, 119 'enable_swarming': False,
116 'swarming_dimensions': { 120 'swarming_dimensions': {
117 'os': 'Mac-10.9', 121 'os': 'Mac-10.9',
118 }, 122 },
119 }, 123 },
120 'iOS Device': { 124 'iOS Device': {
121 'recipe_config': 'chromium_ios_device', 125 'recipe_config': 'chromium_ios_device',
122 'chromium_config_kwargs': { 126 'chromium_config_kwargs': {
123 'BUILD_CONFIG': 'Release', 127 'BUILD_CONFIG': 'Release',
124 'TARGET_PLATFORM': 'ios', 128 'TARGET_PLATFORM': 'ios',
125 'TARGET_BITS': 32, 129 'TARGET_BITS': 32,
(...skipping 29 matching lines...) Expand all
155 }, 159 },
156 'gclient_config_kwargs': { 160 'gclient_config_kwargs': {
157 'GIT_MODE': True, 161 'GIT_MODE': True,
158 }, 162 },
159 'testing': { 163 'testing': {
160 'platform': 'mac', 164 'platform': 'mac',
161 } 165 }
162 }, 166 },
163 }, 167 },
164 } 168 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_mac_Mac10_9_Tests.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698