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

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

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