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

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

Issue 1301393004: Remove Linux ARM Compile from main waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: merge Created 5 years, 3 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.
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 'Linux ARM': {
17 'chromium_config': 'chromium',
18 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
19 'gclient_config': 'chromium',
20 'chromium_config_kwargs': {
21 'BUILD_CONFIG': 'Release',
22 'TARGET_ARCH': 'arm',
23 'TARGET_BITS': 32,
24 },
25 'bot_type': 'builder',
26 'compile_targets': [
27 'chromium_builder_tests',
28 ],
29 'use_isolate': True,
30 'testing': {
31 'platform': 'linux',
32 },
33 },
34 'Linux Builder': { 16 'Linux Builder': {
35 'chromium_config': 'chromium', 17 'chromium_config': 'chromium',
36 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], 18 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
37 'gclient_config': 'chromium', 19 'gclient_config': 'chromium',
38 'chromium_config_kwargs': { 20 'chromium_config_kwargs': {
39 'BUILD_CONFIG': 'Release', 21 'BUILD_CONFIG': 'Release',
40 'TARGET_BITS': 64, 22 'TARGET_BITS': 64,
41 }, 23 },
42 'bot_type': 'builder', 24 'bot_type': 'builder',
43 'compile_targets': [ 25 'compile_targets': [
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 'TARGET_BITS': 32, 524 'TARGET_BITS': 32,
543 'TARGET_PLATFORM': 'android', 525 'TARGET_PLATFORM': 'android',
544 }, 526 },
545 'android_config': 'cast_builder', 527 'android_config': 'cast_builder',
546 'testing': { 528 'testing': {
547 'platform': 'linux', 529 'platform': 'linux',
548 }, 530 },
549 }, 531 },
550 }, 532 },
551 } 533 }
OLDNEW
« no previous file with comments | « masters/master.chromium.linux/slaves.cfg ('k') | scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_ARM.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698