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

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

Issue 2418233002: Add IGNORE_DEPS_CHANGES flag and coverage builder. (Closed)
Patch Set: Created 4 years, 2 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-chromiumos-archive', 9 'build_gs_bucket': 'chromium-chromiumos-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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'BUILD_CONFIG': 'Debug', 163 'BUILD_CONFIG': 'Debug',
164 'TARGET_BITS': 64, 164 'TARGET_BITS': 64,
165 }, 165 },
166 'bot_type': 'tester', 166 'bot_type': 'tester',
167 'parent_buildername': 'Linux ChromiumOS Builder (dbg)', 167 'parent_buildername': 'Linux ChromiumOS Builder (dbg)',
168 'testing': { 168 'testing': {
169 'platform': 'linux', 169 'platform': 'linux',
170 }, 170 },
171 'enable_swarming': True, 171 'enable_swarming': True,
172 }, 172 },
173
174 # Add a coverage builder to exercise configs that are leveraged in other
175 # recipe collections to build chrome packages:
176 # - "ignore_deps_changes"
177 'Package Builder (Coverage)': {
178 'chromium_config': 'chromium',
179 'chromium_apply_config': ['chromeos', 'ninja_confirm_noop',
180 'ignore_deps_changes', 'mb'],
181 'gclient_config': 'chromium',
182 'chromium_config_kwargs': {
183 'BUILD_CONFIG': 'Debug',
184 'TARGET_BITS': 64,
185 },
186 'bot_type': 'builder',
187 'testing': {
188 'platform': 'linux',
189 },
190 },
173 }, 191 },
174 } 192 }
175 193
176 # Simple Chrome compile-only builders. 194 # Simple Chrome compile-only builders.
177 for board in ('x86-generic', 'amd64-generic', 'daisy'): 195 for board in ('x86-generic', 'amd64-generic', 'daisy'):
178 SPEC['builders']['ChromiumOS %s Compile' % (board,)] = { 196 SPEC['builders']['ChromiumOS %s Compile' % (board,)] = {
179 'chromium_config': 'chromium', 197 'chromium_config': 'chromium',
180 'chromium_apply_config': ['chromeos', 'mb', 'ninja_confirm_noop'], 198 'chromium_apply_config': ['chromeos', 'mb', 'ninja_confirm_noop'],
181 'gclient_config': 'chromium', 199 'gclient_config': 'chromium',
182 'chromium_config_kwargs': { 200 'chromium_config_kwargs': {
183 'BUILD_CONFIG': 'Release', 201 'BUILD_CONFIG': 'Release',
184 'TARGET_PLATFORM': 'chromeos', 202 'TARGET_PLATFORM': 'chromeos',
185 'TARGET_CROS_BOARD': board, 203 'TARGET_CROS_BOARD': board,
186 }, 204 },
187 'bot_type': 'builder', 205 'bot_type': 'builder',
188 'compile_targets': [ 206 'compile_targets': [
189 'chromiumos_preflight', 207 'chromiumos_preflight',
190 ], 208 ],
191 'testing': { 209 'testing': {
192 'platform': 'linux', 210 'platform': 'linux',
193 }, 211 },
194 } 212 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698