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

Side by Side Diff: masters/master.tryserver.chromium.linux/master.cfg

Issue 1781163002: Adding optional variable 32 bit linux builder (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 9 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 | masters/master.tryserver.chromium.linux/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # READ THIS: 7 # READ THIS:
8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure
9 9
10 import os 10 import os
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 # These variable builders are used by Findit to identify culprit commits for 337 # These variable builders are used by Findit to identify culprit commits for
338 # compile or test failures on the main waterfall. They run on optional slaves 338 # compile or test failures on the main waterfall. They run on optional slaves
339 # and NOT CQ slaves. 339 # and NOT CQ slaves.
340 variable_builders = [ 340 variable_builders = [
341 { 341 {
342 'name': 'linux_chromium_variable', 342 'name': 'linux_chromium_variable',
343 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 343 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
344 'slavebuilddir': 'linux', 344 'slavebuilddir': 'linux',
345 }, 345 },
346 { 346 {
347 'name': 'linux_chromium_variable_32',
348 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
349 'slavebuilddir': 'linux_32',
350 },
351 {
347 'name': 'linux_chromium_asan_variable', 352 'name': 'linux_chromium_asan_variable',
348 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 353 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
349 'slavebuilddir': 'linux_asan', 354 'slavebuilddir': 'linux_asan',
350 }, 355 },
351 { 356 {
352 'name': 'linux_chromium_chromeos_variable', 357 'name': 'linux_chromium_chromeos_variable',
353 'factory': m_annotator.BaseFactory('findit/chromium/compile'), 358 'factory': m_annotator.BaseFactory('findit/chromium/compile'),
354 'slavebuilddir': 'linux_chromeos', 359 'slavebuilddir': 'linux_chromeos',
355 }, 360 },
356 { 361 {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 # base.make_stop_form = hack_stop(base.make_stop_form) 512 # base.make_stop_form = hack_stop(base.make_stop_form)
508 513
509 514
510 ####### PROJECT IDENTITY 515 ####### PROJECT IDENTITY
511 516
512 # The 'projectURL' string will be used to provide a link 517 # The 'projectURL' string will be used to provide a link
513 # from buildbot HTML pages to your project's home page. 518 # from buildbot HTML pages to your project's home page.
514 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
515 520
516 # vi: set ts=4 sts=2 sw=2 et: 521 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « no previous file | masters/master.tryserver.chromium.linux/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698