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

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

Issue 2415543004: Download the hermetic xcode toolchain on all bots that target mac. (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-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': [ 18 'chromium_apply_config': [
19 'archive_gpu_tests', 19 'archive_gpu_tests',
20 'chrome_with_codecs', 20 'chrome_with_codecs',
21 'mb', 21 'mb',
22 'ninja_confirm_noop', 22 'ninja_confirm_noop',
23 'force_mac_toolchain',
24 ], 23 ],
25 'gclient_config': 'chromium', 24 'gclient_config': 'chromium',
26 'chromium_config_kwargs': { 25 'chromium_config_kwargs': {
27 'BUILD_CONFIG': 'Release', 26 'BUILD_CONFIG': 'Release',
28 'TARGET_BITS': 64, 27 'TARGET_BITS': 64,
29 }, 28 },
30 'bot_type': 'builder', 29 'bot_type': 'builder',
31 'compile_targets': [ 30 'compile_targets': [
32 'chromium_builder_tests', 31 'chromium_builder_tests',
33 ], 32 ],
34 'testing': { 33 'testing': {
35 'platform': 'mac', 34 'platform': 'mac',
36 }, 35 },
37 'enable_swarming': True, 36 'enable_swarming': True,
38 'use_isolate': True, 37 'use_isolate': True,
39 'checkout_dir': 'mac', 38 'checkout_dir': 'mac',
40 }, 39 },
41 'Mac10.9 Tests': { 40 'Mac10.9 Tests': {
42 'chromium_config': 'chromium', 41 'chromium_config': 'chromium',
43 'chromium_apply_config': ['ninja_confirm_noop', 'force_mac_toolchain'], 42 'chromium_apply_config': ['ninja_confirm_noop'],
44 'gclient_config': 'chromium', 43 'gclient_config': 'chromium',
45 'chromium_config_kwargs': { 44 'chromium_config_kwargs': {
46 'BUILD_CONFIG': 'Release', 45 'BUILD_CONFIG': 'Release',
47 'TARGET_BITS': 64, 46 'TARGET_BITS': 64,
48 }, 47 },
49 'bot_type': 'tester', 48 'bot_type': 'tester',
50 'parent_buildername': 'Mac Builder', 49 'parent_buildername': 'Mac Builder',
51 'testing': { 50 'testing': {
52 'platform': 'mac', 51 'platform': 'mac',
53 }, 52 },
54 'enable_swarming': True, 53 'enable_swarming': True,
55 'swarming_dimensions': { 54 'swarming_dimensions': {
56 'os': 'Mac-10.9', 55 'os': 'Mac-10.9',
57 }, 56 },
58 }, 57 },
59 'Mac10.10 Tests': { 58 'Mac10.10 Tests': {
60 'chromium_config': 'chromium', 59 'chromium_config': 'chromium',
61 'chromium_apply_config': ['ninja_confirm_noop', 'force_mac_toolchain'], 60 'chromium_apply_config': ['ninja_confirm_noop'],
62 'gclient_config': 'chromium', 61 'gclient_config': 'chromium',
63 'chromium_config_kwargs': { 62 'chromium_config_kwargs': {
64 'BUILD_CONFIG': 'Release', 63 'BUILD_CONFIG': 'Release',
65 'TARGET_BITS': 64, 64 'TARGET_BITS': 64,
66 }, 65 },
67 'bot_type': 'tester', 66 'bot_type': 'tester',
68 'parent_buildername': 'Mac Builder', 67 'parent_buildername': 'Mac Builder',
69 'testing': { 68 'testing': {
70 'platform': 'mac', 69 'platform': 'mac',
71 }, 70 },
72 'swarming_dimensions': { 71 'swarming_dimensions': {
73 'os': 'Mac-10.10', 72 'os': 'Mac-10.10',
74 }, 73 },
75 }, 74 },
76 'Mac10.11 Tests': { 75 'Mac10.11 Tests': {
77 'chromium_config': 'chromium', 76 'chromium_config': 'chromium',
78 'chromium_apply_config': ['ninja_confirm_noop', 'force_mac_toolchain'], 77 'chromium_apply_config': ['ninja_confirm_noop'],
79 'gclient_config': 'chromium', 78 'gclient_config': 'chromium',
80 'chromium_config_kwargs': { 79 'chromium_config_kwargs': {
81 'BUILD_CONFIG': 'Release', 80 'BUILD_CONFIG': 'Release',
82 'TARGET_BITS': 64, 81 'TARGET_BITS': 64,
83 }, 82 },
84 'bot_type': 'tester', 83 'bot_type': 'tester',
85 'parent_buildername': 'Mac Builder', 84 'parent_buildername': 'Mac Builder',
86 'testing': { 85 'testing': {
87 'platform': 'mac', 86 'platform': 'mac',
88 }, 87 },
89 }, 88 },
90 'Mac Builder (dbg)': { 89 'Mac Builder (dbg)': {
91 'chromium_config': 'chromium', 90 'chromium_config': 'chromium',
92 'chromium_apply_config': [ 91 'chromium_apply_config': [
93 'mb', 92 'mb',
94 'ninja_confirm_noop', 93 'ninja_confirm_noop',
95 'force_mac_toolchain'
96 ], 94 ],
97 'gclient_config': 'chromium', 95 'gclient_config': 'chromium',
98 'chromium_config_kwargs': { 96 'chromium_config_kwargs': {
99 'BUILD_CONFIG': 'Debug', 97 'BUILD_CONFIG': 'Debug',
100 'TARGET_BITS': 64, 98 'TARGET_BITS': 64,
101 }, 99 },
102 'bot_type': 'builder', 100 'bot_type': 'builder',
103 'compile_targets': [ 101 'compile_targets': [
104 'chromium_builder_tests', 102 'chromium_builder_tests',
105 ], 103 ],
106 'testing': { 104 'testing': {
107 'platform': 'mac', 105 'platform': 'mac',
108 }, 106 },
109 'enable_swarming': True, 107 'enable_swarming': True,
110 'use_isolate': True, 108 'use_isolate': True,
111 'checkout_dir': 'mac', 109 'checkout_dir': 'mac',
112 }, 110 },
113 'Mac10.9 Tests (dbg)': { 111 'Mac10.9 Tests (dbg)': {
114 'chromium_config': 'chromium', 112 'chromium_config': 'chromium',
115 'chromium_apply_config': ['ninja_confirm_noop', 'force_mac_toolchain'], 113 'chromium_apply_config': ['ninja_confirm_noop'],
116 'gclient_config': 'chromium', 114 'gclient_config': 'chromium',
117 'chromium_config_kwargs': { 115 'chromium_config_kwargs': {
118 'BUILD_CONFIG': 'Debug', 116 'BUILD_CONFIG': 'Debug',
119 'TARGET_BITS': 64, 117 'TARGET_BITS': 64,
120 }, 118 },
121 'bot_type': 'tester', 119 'bot_type': 'tester',
122 'parent_buildername': 'Mac Builder (dbg)', 120 'parent_buildername': 'Mac Builder (dbg)',
123 'testing': { 121 'testing': {
124 'platform': 'mac', 122 'platform': 'mac',
125 }, 123 },
126 'enable_swarming': True, 124 'enable_swarming': True,
127 'swarming_dimensions': { 125 'swarming_dimensions': {
128 'os': 'Mac-10.9', 126 'os': 'Mac-10.9',
129 }, 127 },
130 }, 128 },
131 }, 129 },
132 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698