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

Side by Side Diff: infra/bots/recipes/swarm_compile.py

Issue 2340463008: GN: support 32-bit x86 builds (Closed)
Patch Set: += Created 4 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 5
6 # Recipe module for Skia Swarming compile. 6 # Recipe module for Skia Swarming compile.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'core', 10 'core',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 retcode=1) 258 retcode=1)
259 if 'Trybot' in builder: 259 if 'Trybot' in builder:
260 test += api.properties(issue=500, 260 test += api.properties(issue=500,
261 patchset=1, 261 patchset=1,
262 rietveld='https://codereview.chromium.org') 262 rietveld='https://codereview.chromium.org')
263 263
264 yield test 264 yield test
265 265
266 mastername = 'client.skia.compile' 266 mastername = 'client.skia.compile'
267 slavename = 'skiabot-win-compile-000' 267 slavename = 'skiabot-win-compile-000'
268 buildername = 'Build-Ubuntu-GCC-x86-Debug' 268 buildername = 'Build-Ubuntu-GCC-x86_64-Debug'
269 yield ( 269 yield (
270 api.test('failed_compile') + 270 api.test('failed_compile') +
271 api.properties(buildername=buildername, 271 api.properties(buildername=buildername,
272 mastername=mastername, 272 mastername=mastername,
273 slavename=slavename, 273 slavename=slavename,
274 buildnumber=5, 274 buildnumber=5,
275 revision='abc123', 275 revision='abc123',
276 path_config='kitchen', 276 path_config='kitchen',
277 swarm_out_dir='[SWARM_OUT_DIR]') + 277 swarm_out_dir='[SWARM_OUT_DIR]') +
278 api.path.exists( 278 api.path.exists(
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 buildername=buildername + '-Trybot', 328 buildername=buildername + '-Trybot',
329 mastername=mastername, 329 mastername=mastername,
330 slavename=slavename, 330 slavename=slavename,
331 buildnumber=5, 331 buildnumber=5,
332 path_config='kitchen', 332 path_config='kitchen',
333 swarm_out_dir='[SWARM_OUT_DIR]', 333 swarm_out_dir='[SWARM_OUT_DIR]',
334 revision='abc123', 334 revision='abc123',
335 **gerrit_kwargs) + 335 **gerrit_kwargs) +
336 api.platform('win', 64) 336 api.platform('win', 64)
337 ) 337 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698