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

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

Issue 696353005: Update chromium_mac recipe for re-imaged testers. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase 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/recipe_modules/chromium/client_skia.py » ('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 },
11 'builders': { 11 'builders': {
12 'Mac Builder': { 12 'Mac Builder': {
13 'recipe_config': 'chromium', 13 'recipe_config': 'chromium',
14 'chromium_config_kwargs': { 14 'chromium_config_kwargs': {
15 'BUILD_CONFIG': 'Release', 15 'BUILD_CONFIG': 'Release',
16 'TARGET_BITS': 32, 16 'TARGET_BITS': 32,
17 }, 17 },
18 'bot_type': 'builder', 18 'bot_type': 'builder',
19 'compile_targets': [ 19 'compile_targets': [
20 'chromium_builder_tests', 20 'chromium_builder_tests',
21 ], 21 ],
22 'testing': { 22 'testing': {
23 'platform': 'mac', 23 'platform': 'mac',
24 }, 24 },
25 'enable_swarming': True, 25 'enable_swarming': True,
26 'use_isolate': True, 26 'use_isolate': True,
27 }, 27 },
28 'Mac10.6 Tests (1)': { 28 'Mac10.6 Tests': {
29 'recipe_config': 'chromium', 29 'recipe_config': 'chromium',
30 'chromium_config_kwargs': { 30 'chromium_config_kwargs': {
31 'BUILD_CONFIG': 'Release', 31 'BUILD_CONFIG': 'Release',
32 'TARGET_BITS': 32, 32 'TARGET_BITS': 32,
33 }, 33 },
34 'test_generators': [ 34 'test_generators': [
35 steps.generate_gtest, 35 steps.generate_gtest,
36 steps.generate_script, 36 steps.generate_script,
37 ], 37 ],
38 'bot_type': 'tester', 38 'bot_type': 'tester',
39 'parent_buildername': 'Mac Builder', 39 'parent_buildername': 'Mac Builder',
40 'testing': { 40 'testing': {
41 'platform': 'mac', 41 'platform': 'mac',
42 }, 42 },
43 'enable_swarming': True, 43 'enable_swarming': True,
44 'swarming_dimensions': { 44 'swarming_dimensions': {
45 'os': 'Mac-10.6', 45 'os': 'Mac-10.6',
46 }, 46 },
47 }, 47 },
48 'Mac10.7 Tests (1)': { 48 'Mac10.8 Tests': {
49 'recipe_config': 'chromium', 49 'recipe_config': 'chromium',
50 'chromium_config_kwargs': { 50 'chromium_config_kwargs': {
51 'BUILD_CONFIG': 'Release', 51 'BUILD_CONFIG': 'Release',
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 'os': 'Mac-10.8',
63 },
64 'enable_swarming': True,
65 },
66 'Mac10.9 Tests': {
67 'recipe_config': 'chromium',
68 'chromium_config_kwargs': {
69 'BUILD_CONFIG': 'Release',
70 'TARGET_BITS': 32,
71 },
72 'test_generators': [
73 steps.generate_gtest,
74 steps.generate_script,
75 ],
76 'bot_type': 'tester',
77 'parent_buildername': 'Mac Builder',
78 'testing': {
79 'platform': 'mac',
80 'os': 'Mac-10.9',
M-A Ruel 2014/11/04 23:10:30 It should be in section 'swarming_dimensions'.
Robert Sesek 2014/11/04 23:22:16 Fixed with https://codereview.chromium.org/6931830
62 }, 81 },
63 'enable_swarming': True, 82 'enable_swarming': True,
64 }, 83 },
65 'Mac Builder (dbg)': { 84 'Mac Builder (dbg)': {
66 'recipe_config': 'chromium', 85 'recipe_config': 'chromium',
67 'chromium_config_kwargs': { 86 'chromium_config_kwargs': {
68 'BUILD_CONFIG': 'Debug', 87 'BUILD_CONFIG': 'Debug',
69 'TARGET_BITS': 32, 88 'TARGET_BITS': 32,
70 }, 89 },
71 'bot_type': 'builder', 90 'bot_type': 'builder',
72 'compile_targets': [ 91 'compile_targets': [
73 'chromium_builder_tests', 92 'chromium_builder_tests',
74 ], 93 ],
75 'testing': { 94 'testing': {
76 'platform': 'mac', 95 'platform': 'mac',
77 }, 96 },
78 'enable_swarming': True, 97 'enable_swarming': True,
79 'use_isolate': True, 98 'use_isolate': True,
80 }, 99 },
81 'Mac 10.6 Tests (dbg)(1)': { 100 'Mac10.9 Tests (dbg)': {
82 'recipe_config': 'chromium', 101 'recipe_config': 'chromium',
83 'chromium_config_kwargs': { 102 'chromium_config_kwargs': {
84 'BUILD_CONFIG': 'Debug', 103 'BUILD_CONFIG': 'Debug',
85 'TARGET_BITS': 32,
86 },
87 'test_generators': [
88 steps.generate_gtest,
89 steps.generate_script,
90 ],
91 'bot_type': 'tester',
92 'parent_buildername': 'Mac Builder (dbg)',
93 'testing': {
94 'platform': 'mac',
95 },
96 'enable_swarming': True,
97 'swarming_dimensions': {
98 'os': 'Mac-10.6',
99 },
100 },
101 'Mac 10.7 Tests (dbg)(1)': {
102 'recipe_config': 'chromium',
103 'chromium_config_kwargs': {
104 'BUILD_CONFIG': 'Debug',
105 'TARGET_BITS': 32, 104 'TARGET_BITS': 32,
106 }, 105 },
107 'test_generators': [ 106 'test_generators': [
108 steps.generate_gtest, 107 steps.generate_gtest,
109 steps.generate_script, 108 steps.generate_script,
110 ], 109 ],
111 'bot_type': 'tester', 110 'bot_type': 'tester',
112 'parent_buildername': 'Mac Builder (dbg)', 111 'parent_buildername': 'Mac Builder (dbg)',
113 'testing': { 112 'testing': {
114 'platform': 'mac', 113 'platform': 'mac',
115 }, 114 },
116 'enable_swarming': True, 115 'enable_swarming': True,
116 'swarming_dimensions': {
117 'os': 'Mac-10.9',
118 },
117 }, 119 },
118 'iOS Device': { 120 'iOS Device': {
119 'recipe_config': 'chromium_ios_device', 121 'recipe_config': 'chromium_ios_device',
120 'chromium_config_kwargs': { 122 'chromium_config_kwargs': {
121 'BUILD_CONFIG': 'Release', 123 'BUILD_CONFIG': 'Release',
122 'TARGET_PLATFORM': 'ios', 124 'TARGET_PLATFORM': 'ios',
123 'TARGET_BITS': 32, 125 'TARGET_BITS': 32,
124 }, 126 },
125 'gclient_config_kwargs': { 127 'gclient_config_kwargs': {
126 'GIT_MODE': True, 128 'GIT_MODE': True,
(...skipping 26 matching lines...) Expand all
153 }, 155 },
154 'gclient_config_kwargs': { 156 'gclient_config_kwargs': {
155 'GIT_MODE': True, 157 'GIT_MODE': True,
156 }, 158 },
157 'testing': { 159 'testing': {
158 'platform': 'mac', 160 'platform': 'mac',
159 } 161 }
160 }, 162 },
161 }, 163 },
162 } 164 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/client_skia.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698