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

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

Issue 2044513004: Recipe for Blimp bot on chromium.linux (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Moves blimp FYI slave to chromium.linux Created 4 years, 6 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-linux-archive', 9 'build_gs_bucket': 'chromium-linux-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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 'TARGET_BITS': 32, 253 'TARGET_BITS': 32,
254 'TARGET_PLATFORM': 'android', 254 'TARGET_PLATFORM': 'android',
255 }, 255 },
256 'android_config': 'clang_builder_mb', 256 'android_config': 'clang_builder_mb',
257 'bot_type': 'builder_tester', 257 'bot_type': 'builder_tester',
258 'testing': { 258 'testing': {
259 'platform': 'linux', 259 'platform': 'linux',
260 }, 260 },
261 }, 261 },
262 262
263 'Blimp Linux (dbg)': {
264 'chromium_config': 'chromium',
265 'chromium_apply_config': ['mb'],
266 'gclient_config': 'chromium',
267 'chromium_config_kwargs': {
268 'BUILD_CONFIG': 'Debug',
269 'TARGET_BITS': 64,
270 'TARGET_PLATFORM': 'linux',
271 },
272 'bot_type': 'builder_tester',
273 'test_generators': [
274 steps.generate_gtest,
275 ],
276 'testing': {
277 'platform': 'linux',
278 },
279 },
280
263 'Cast Linux': { 281 'Cast Linux': {
264 'chromium_config': 'cast_linux', 282 'chromium_config': 'cast_linux',
265 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 283 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
266 'gclient_config': 'chromium', 284 'gclient_config': 'chromium',
267 'chromium_config_kwargs': { 285 'chromium_config_kwargs': {
268 'BUILD_CONFIG': 'Release', 286 'BUILD_CONFIG': 'Release',
269 'TARGET_BITS': 64, 287 'TARGET_BITS': 64,
270 }, 288 },
271 'compile_targets': [ 289 'compile_targets': [
272 'cast_shell', 290 'cast_shell',
(...skipping 20 matching lines...) Expand all
293 'TARGET_BITS': 32, 311 'TARGET_BITS': 32,
294 'TARGET_PLATFORM': 'android', 312 'TARGET_PLATFORM': 'android',
295 }, 313 },
296 'android_config': 'cast_builder', 314 'android_config': 'cast_builder',
297 'testing': { 315 'testing': {
298 'platform': 'linux', 316 'platform': 'linux',
299 }, 317 },
300 }, 318 },
301 }, 319 },
302 } 320 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698