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

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

Issue 556203002: Revert of Add mojo python bindings tests to the waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix trained data 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 }, 105 },
106 'bot_type': 'builder_tester', 106 'bot_type': 'builder_tester',
107 'compile_targets': [ 107 'compile_targets': [
108 'all', 108 'all',
109 ], 109 ],
110 'test_generators': [ 110 'test_generators': [
111 steps.generate_gtest, 111 steps.generate_gtest,
112 ], 112 ],
113 'tests': [ 113 'tests': [
114 steps.MojoPythonTests(), 114 steps.MojoPythonTests(),
115 steps.MojoPythonBindingsTests(),
116 steps.TelemetryUnitTests(), 115 steps.TelemetryUnitTests(),
117 steps.TelemetryPerfUnitTests(), 116 steps.TelemetryPerfUnitTests(),
118 ], 117 ],
119 'testing': { 118 'testing': {
120 'platform': 'linux', 119 'platform': 'linux',
121 }, 120 },
122 }, 121 },
123 'Linux Trusty (32)': { 122 'Linux Trusty (32)': {
124 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 123 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
125 'recipe_config': 'chromium_no_goma', 124 'recipe_config': 'chromium_no_goma',
126 'chromium_config_kwargs': { 125 'chromium_config_kwargs': {
127 'BUILD_CONFIG': 'Release', 126 'BUILD_CONFIG': 'Release',
128 'TARGET_BITS': 32, 127 'TARGET_BITS': 32,
129 }, 128 },
130 'bot_type': 'builder_tester', 129 'bot_type': 'builder_tester',
131 'compile_targets': [ 130 'compile_targets': [
132 'all', 131 'all',
133 ], 132 ],
134 'test_generators': [ 133 'test_generators': [
135 steps.generate_gtest, 134 steps.generate_gtest,
136 ], 135 ],
137 'tests': [ 136 'tests': [
138 steps.MojoPythonTests(), 137 steps.MojoPythonTests(),
139 steps.MojoPythonBindingsTests(),
140 steps.TelemetryUnitTests(), 138 steps.TelemetryUnitTests(),
141 steps.TelemetryPerfUnitTests(), 139 steps.TelemetryPerfUnitTests(),
142 ], 140 ],
143 'testing': { 141 'testing': {
144 'platform': 'linux', 142 'platform': 'linux',
145 }, 143 },
146 }, 144 },
147 'Linux Trusty (dbg)': { 145 'Linux Trusty (dbg)': {
148 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 146 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
149 'recipe_config': 'chromium_no_goma', 147 'recipe_config': 'chromium_no_goma',
150 'chromium_config_kwargs': { 148 'chromium_config_kwargs': {
151 'BUILD_CONFIG': 'Debug', 149 'BUILD_CONFIG': 'Debug',
152 'TARGET_BITS': 64, 150 'TARGET_BITS': 64,
153 }, 151 },
154 'bot_type': 'builder_tester', 152 'bot_type': 'builder_tester',
155 'compile_targets': [ 153 'compile_targets': [
156 'all', 154 'all',
157 ], 155 ],
158 'test_generators': [ 156 'test_generators': [
159 steps.generate_gtest, 157 steps.generate_gtest,
160 ], 158 ],
161 'tests': [ 159 'tests': [
162 steps.MojoPythonTests(), 160 steps.MojoPythonTests(),
163 steps.MojoPythonBindingsTests(),
164 steps.TelemetryUnitTests(), 161 steps.TelemetryUnitTests(),
165 steps.TelemetryPerfUnitTests(), 162 steps.TelemetryPerfUnitTests(),
166 ], 163 ],
167 'testing': { 164 'testing': {
168 'platform': 'linux', 165 'platform': 'linux',
169 }, 166 },
170 }, 167 },
171 'Linux Trusty (dbg)(32)': { 168 'Linux Trusty (dbg)(32)': {
172 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 . 169 # TODO(phajdan.jr): Re-enable goma, http://crbug.com/349236 .
173 'recipe_config': 'chromium_no_goma', 170 'recipe_config': 'chromium_no_goma',
174 'chromium_config_kwargs': { 171 'chromium_config_kwargs': {
175 'BUILD_CONFIG': 'Debug', 172 'BUILD_CONFIG': 'Debug',
176 'TARGET_BITS': 32, 173 'TARGET_BITS': 32,
177 }, 174 },
178 'bot_type': 'builder_tester', 175 'bot_type': 'builder_tester',
179 'compile_targets': [ 176 'compile_targets': [
180 'all', 177 'all',
181 ], 178 ],
182 'test_generators': [ 179 'test_generators': [
183 steps.generate_gtest, 180 steps.generate_gtest,
184 ], 181 ],
185 'tests': [ 182 'tests': [
186 steps.MojoPythonTests(), 183 steps.MojoPythonTests(),
187 steps.MojoPythonBindingsTests(),
188 steps.TelemetryUnitTests(), 184 steps.TelemetryUnitTests(),
189 steps.TelemetryPerfUnitTests(), 185 steps.TelemetryPerfUnitTests(),
190 ], 186 ],
191 'testing': { 187 'testing': {
192 'platform': 'linux', 188 'platform': 'linux',
193 }, 189 },
194 }, 190 },
195 'Print Preview Linux': { 191 'Print Preview Linux': {
196 'recipe_config': 'chromium', 192 'recipe_config': 'chromium',
197 'GYP_DEFINES': { 193 'GYP_DEFINES': {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 ], 290 ],
295 'test_generators': [ 291 'test_generators': [
296 steps.generate_gtest, 292 steps.generate_gtest,
297 ], 293 ],
298 'testing': { 294 'testing': {
299 'platform': 'win', 295 'platform': 'win',
300 }, 296 },
301 }, 297 },
302 }, 298 },
303 } 299 }
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