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

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

Issue 1688043002: Add chromium_clang_upload bot for Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: nits Created 4 years, 10 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 223
224 # This bot builds and upload GN binaries to cloud storage. 224 # This bot builds and upload GN binaries to cloud storage.
225 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload 225 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload
226 # bots need the linux sysroots and hence require src-internal. 226 # bots need the linux sysroots and hence require src-internal.
227 chromium_builders.append({ 227 chromium_builders.append({
228 'name': 'linux_chromium_gn_upload', 228 'name': 'linux_chromium_gn_upload',
229 'factory': m_annotator.BaseFactory('chromium_gn_upload'), 229 'factory': m_annotator.BaseFactory('chromium_gn_upload'),
230 'slavebuilddir': 'build_and_upload_gn', 230 'slavebuilddir': 'build_and_upload_gn',
231 }) 231 })
232 232
233 chromium_builders.append({
234 'name': 'linux_chromium_clang_upload',
235 'factory': m_annotator.BaseFactory('chromium_clang_upload'),
236 'slavebuilddir': 'build_and_upload_clang',
237 })
238
233 # Chromecast builders using chromium_trybot 239 # Chromecast builders using chromium_trybot
234 chromium_builders.extend([{ 240 chromium_builders.extend([{
235 'name': 'cast_shell_linux', 241 'name': 'cast_shell_linux',
236 'factory': m_annotator.BaseFactory( 242 'factory': m_annotator.BaseFactory(
237 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), 243 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME),
238 }, 244 },
239 ]) 245 ])
240 246
241 chromium_builders.append({ 247 chromium_builders.append({
242 'name': 'linux_deterministic', 248 'name': 'linux_deterministic',
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 # base.make_stop_form = hack_stop(base.make_stop_form) 479 # base.make_stop_form = hack_stop(base.make_stop_form)
474 480
475 481
476 ####### PROJECT IDENTITY 482 ####### PROJECT IDENTITY
477 483
478 # The 'projectURL' string will be used to provide a link 484 # The 'projectURL' string will be used to provide a link
479 # from buildbot HTML pages to your project's home page. 485 # from buildbot HTML pages to your project's home page.
480 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 486 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
481 487
482 # vi: set ts=4 sts=2 sw=2 et: 488 # 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