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/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: Update tests 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
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 ], 36 ],
37 'tests': [ 37 'tests': [
38 steps.NaclIntegrationTest(), 38 steps.NaclIntegrationTest(),
39 steps.TelemetryUnitTests(), 39 steps.TelemetryUnitTests(),
40 steps.TelemetryPerfUnitTests(), 40 steps.TelemetryPerfUnitTests(),
41 ], 41 ],
42 'bot_type': 'tester', 42 'bot_type': 'tester',
43 'parent_buildername': 'Mac Builder', 43 'parent_buildername': 'Mac Builder',
44 'testing': { 44 'testing': {
45 'platform': 'mac', 45 'platform': 'mac',
46 }, 46 },
47 'enable_swarming': True, 47 'enable_swarming': True,
48 'swarming_dimensions': { 48 'swarming_dimensions': {
49 'os': 'Mac-10.6', 49 'os': 'Mac-10.6',
50 }, 50 },
51 }, 51 },
52 'Mac10.7 Tests (1)': { 52 'Mac10.8 Tests': {
53 'recipe_config': 'chromium', 53 'recipe_config': 'chromium',
54 'chromium_config_kwargs': { 54 'chromium_config_kwargs': {
55 'BUILD_CONFIG': 'Release', 55 'BUILD_CONFIG': 'Release',
56 'TARGET_BITS': 32, 56 'TARGET_BITS': 32,
57 }, 57 },
58 'test_generators': [ 58 'test_generators': [
59 steps.generate_gtest, 59 steps.generate_gtest,
60 ], 60 ],
61 'tests': [ 61 'tests': [
62 steps.NaclIntegrationTest(), 62 steps.NaclIntegrationTest(),
63 steps.TelemetryUnitTests(), 63 steps.TelemetryUnitTests(),
64 steps.TelemetryPerfUnitTests(), 64 steps.TelemetryPerfUnitTests(),
65 ], 65 ],
66 'bot_type': 'tester', 66 'bot_type': 'tester',
67 'parent_buildername': 'Mac Builder', 67 'parent_buildername': 'Mac Builder',
68 'testing': { 68 'testing': {
69 'platform': 'mac', 69 'platform': 'mac',
70 }, 70 },
71 'enable_swarming': True, 71 'enable_swarming': True,
72 }, 72 },
73 'Mac10.9 Tests': {
74 'recipe_config': 'chromium',
75 'chromium_config_kwargs': {
76 'BUILD_CONFIG': 'Release',
77 'TARGET_BITS': 32,
78 },
79 'test_generators': [
80 steps.generate_gtest,
81 ],
82 'tests': [
83 steps.NaclIntegrationTest(),
84 steps.TelemetryUnitTests(),
85 steps.TelemetryPerfUnitTests(),
86 ],
87 'bot_type': 'tester',
88 'parent_buildername': 'Mac Builder',
89 'testing': {
90 'platform': 'mac',
91 },
92 'enable_swarming': True,
93 'swarming_dimensions': {
94 'os': 'Mac-10.9',
95 },
96 },
73 'Mac Builder (dbg)': { 97 'Mac Builder (dbg)': {
74 'recipe_config': 'chromium', 98 'recipe_config': 'chromium',
75 'chromium_config_kwargs': { 99 'chromium_config_kwargs': {
76 'BUILD_CONFIG': 'Debug', 100 'BUILD_CONFIG': 'Debug',
77 'TARGET_BITS': 32, 101 'TARGET_BITS': 32,
78 }, 102 },
79 'bot_type': 'builder', 103 'bot_type': 'builder',
80 'compile_targets': [ 104 'compile_targets': [
81 'chromium_builder_tests', 105 'chromium_builder_tests',
82 ], 106 ],
83 'testing': { 107 'testing': {
84 'platform': 'mac', 108 'platform': 'mac',
85 }, 109 },
86 'enable_swarming': True, 110 'enable_swarming': True,
87 'use_isolate': True, 111 'use_isolate': True,
88 }, 112 },
89 'Mac 10.6 Tests (dbg)(1)': { 113 'Mac10.9 Tests (dbg)': {
90 'recipe_config': 'chromium', 114 'recipe_config': 'chromium',
91 'chromium_config_kwargs': { 115 'chromium_config_kwargs': {
92 'BUILD_CONFIG': 'Debug', 116 'BUILD_CONFIG': 'Debug',
93 'TARGET_BITS': 32,
94 },
95 'test_generators': [
96 steps.generate_gtest,
97 ],
98 'tests': [
99 steps.NaclIntegrationTest(),
100 steps.TelemetryUnitTests(),
101 steps.TelemetryPerfUnitTests(),
102 ],
103 'bot_type': 'tester',
104 'parent_buildername': 'Mac Builder (dbg)',
105 'testing': {
106 'platform': 'mac',
107 },
108 'enable_swarming': True,
109 'swarming_dimensions': {
110 'os': 'Mac-10.6',
111 },
112 },
113 'Mac 10.7 Tests (dbg)(1)': {
114 'recipe_config': 'chromium',
115 'chromium_config_kwargs': {
116 'BUILD_CONFIG': 'Debug',
117 'TARGET_BITS': 32, 117 'TARGET_BITS': 32,
118 }, 118 },
119 'test_generators': [ 119 'test_generators': [
120 steps.generate_gtest, 120 steps.generate_gtest,
121 ], 121 ],
122 'tests': [ 122 'tests': [
123 steps.NaclIntegrationTest(), 123 steps.NaclIntegrationTest(),
124 steps.TelemetryUnitTests(), 124 steps.TelemetryUnitTests(),
125 steps.TelemetryPerfUnitTests(), 125 steps.TelemetryPerfUnitTests(),
126 ], 126 ],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 }, 169 },
170 'gclient_config_kwargs': { 170 'gclient_config_kwargs': {
171 'GIT_MODE': True, 171 'GIT_MODE': True,
172 }, 172 },
173 'testing': { 173 'testing': {
174 'platform': 'mac', 174 'platform': 'mac',
175 } 175 }
176 }, 176 },
177 }, 177 },
178 } 178 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/client_skia.py » ('j') | scripts/slave/recipes/chromium_trybot.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698