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

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

Issue 518663003: Add mojo python bindings tests to the waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Follow review Created 6 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/chromium_linux.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-fyi-archive', 9 'build_gs_bucket': 'chromium-fyi-archive',
10 }, 10 },
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'BUILD_CONFIG': 'Release', 97 'BUILD_CONFIG': 'Release',
98 'TARGET_BITS': 64, 98 'TARGET_BITS': 64,
99 }, 99 },
100 'bot_type': 'builder_tester', 100 'bot_type': 'builder_tester',
101 'compile_targets': [ 101 'compile_targets': [
102 'all', 102 'all',
103 ], 103 ],
104 'tests': [ 104 'tests': [
105 steps.DynamicGTestTests('Linux Trusty'), 105 steps.DynamicGTestTests('Linux Trusty'),
106 steps.MojoPythonTests(), 106 steps.MojoPythonTests(),
107 steps.MojoPythonBindingsTests(),
107 steps.TelemetryUnitTests(), 108 steps.TelemetryUnitTests(),
108 steps.TelemetryPerfUnitTests(), 109 steps.TelemetryPerfUnitTests(),
109 ], 110 ],
110 'testing': { 111 'testing': {
111 'platform': 'linux', 112 'platform': 'linux',
112 }, 113 },
113 }, 114 },
114 'Linux Trusty (32)': { 115 'Linux Trusty (32)': {
115 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 116 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
116 'recipe_config': 'chromium_no_goma', 117 'recipe_config': 'chromium_no_goma',
117 'chromium_config_kwargs': { 118 'chromium_config_kwargs': {
118 'BUILD_CONFIG': 'Release', 119 'BUILD_CONFIG': 'Release',
119 'TARGET_BITS': 32, 120 'TARGET_BITS': 32,
120 }, 121 },
121 'bot_type': 'builder_tester', 122 'bot_type': 'builder_tester',
122 'compile_targets': [ 123 'compile_targets': [
123 'all', 124 'all',
124 ], 125 ],
125 'tests': [ 126 'tests': [
126 steps.DynamicGTestTests('Linux Trusty (32)'), 127 steps.DynamicGTestTests('Linux Trusty (32)'),
127 steps.MojoPythonTests(), 128 steps.MojoPythonTests(),
129 steps.MojoPythonBindingsTests(),
128 steps.TelemetryUnitTests(), 130 steps.TelemetryUnitTests(),
129 steps.TelemetryPerfUnitTests(), 131 steps.TelemetryPerfUnitTests(),
130 ], 132 ],
131 'testing': { 133 'testing': {
132 'platform': 'linux', 134 'platform': 'linux',
133 }, 135 },
134 }, 136 },
135 'Linux Trusty (dbg)': { 137 'Linux Trusty (dbg)': {
136 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 138 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
137 'recipe_config': 'chromium_no_goma', 139 'recipe_config': 'chromium_no_goma',
138 'chromium_config_kwargs': { 140 'chromium_config_kwargs': {
139 'BUILD_CONFIG': 'Debug', 141 'BUILD_CONFIG': 'Debug',
140 'TARGET_BITS': 64, 142 'TARGET_BITS': 64,
141 }, 143 },
142 'bot_type': 'builder_tester', 144 'bot_type': 'builder_tester',
143 'compile_targets': [ 145 'compile_targets': [
144 'all', 146 'all',
145 ], 147 ],
146 'tests': [ 148 'tests': [
147 steps.DynamicGTestTests('Linux Trusty (dbg)'), 149 steps.DynamicGTestTests('Linux Trusty (dbg)'),
148 steps.MojoPythonTests(), 150 steps.MojoPythonTests(),
151 steps.MojoPythonBindingsTests(),
149 steps.TelemetryUnitTests(), 152 steps.TelemetryUnitTests(),
150 steps.TelemetryPerfUnitTests(), 153 steps.TelemetryPerfUnitTests(),
151 ], 154 ],
152 'testing': { 155 'testing': {
153 'platform': 'linux', 156 'platform': 'linux',
154 }, 157 },
155 }, 158 },
156 'Linux Trusty (dbg)(32)': { 159 'Linux Trusty (dbg)(32)': {
157 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 160 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
158 'recipe_config': 'chromium_no_goma', 161 'recipe_config': 'chromium_no_goma',
159 'chromium_config_kwargs': { 162 'chromium_config_kwargs': {
160 'BUILD_CONFIG': 'Debug', 163 'BUILD_CONFIG': 'Debug',
161 'TARGET_BITS': 32, 164 'TARGET_BITS': 32,
162 }, 165 },
163 'bot_type': 'builder_tester', 166 'bot_type': 'builder_tester',
164 'compile_targets': [ 167 'compile_targets': [
165 'all', 168 'all',
166 ], 169 ],
167 'tests': [ 170 'tests': [
168 steps.DynamicGTestTests('Linux Trusty (dbg)(32)'), 171 steps.DynamicGTestTests('Linux Trusty (dbg)(32)'),
169 steps.MojoPythonTests(), 172 steps.MojoPythonTests(),
173 steps.MojoPythonBindingsTests(),
170 steps.TelemetryUnitTests(), 174 steps.TelemetryUnitTests(),
171 steps.TelemetryPerfUnitTests(), 175 steps.TelemetryPerfUnitTests(),
172 ], 176 ],
173 'testing': { 177 'testing': {
174 'platform': 'linux', 178 'platform': 'linux',
175 }, 179 },
176 }, 180 },
177 'Print Preview Linux': { 181 'Print Preview Linux': {
178 'recipe_config': 'chromium', 182 'recipe_config': 'chromium',
179 'GYP_DEFINES': { 183 'GYP_DEFINES': {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 ], 280 ],
277 'test_generators': [ 281 'test_generators': [
278 steps.generate_gtest, 282 steps.generate_gtest,
279 ], 283 ],
280 'testing': { 284 'testing': {
281 'platform': 'win', 285 'platform': 'win',
282 }, 286 },
283 }, 287 },
284 }, 288 },
285 } 289 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/chromium_linux.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698