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

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

Issue 1846073003: Remove deterministic trybots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 8 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 | Annotate | Revision Log
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 }) 123 })
124 124
125 chromium_builders.extend([{ 125 chromium_builders.extend([{
126 'name': 'win_pgo', 126 'name': 'win_pgo',
127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), 127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000),
128 'slavebuilddir': 'win', 128 'slavebuilddir': 'win',
129 }, 129 },
130 ]) 130 ])
131 131
132 chromium_builders.append({ 132 chromium_builders.append({
133 'name': 'win_deterministic',
134 'factory': m_annotator.BaseFactory('deterministic_build'),
135 'slavebuilddir': 'det',
136 })
137
138 chromium_builders.append({
139 'name': 'win_chromium_syzyasan_rel', 133 'name': 'win_chromium_syzyasan_rel',
140 'factory': m_annotator.BaseFactory('chromium_trybot'), 134 'factory': m_annotator.BaseFactory('chromium_trybot'),
141 'slavebuilddir': 'win', 135 'slavebuilddir': 'win',
142 }) 136 })
143 137
144 # Experimental clang/win bots 138 # Experimental clang/win bots
145 chromium_builders.append({ 139 chromium_builders.append({
146 'name': 'win_clang', 140 'name': 'win_clang',
147 'factory': m_annotator.BaseFactory('chromium_trybot'), 141 'factory': m_annotator.BaseFactory('chromium_trybot'),
148 'slavebuilddir': 'win_clang', 142 'slavebuilddir': 'win_clang',
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 # base.make_stop_form = hack_stop(base.make_stop_form) 362 # base.make_stop_form = hack_stop(base.make_stop_form)
369 363
370 364
371 ####### PROJECT IDENTITY 365 ####### PROJECT IDENTITY
372 366
373 # The 'projectURL' string will be used to provide a link 367 # The 'projectURL' string will be used to provide a link
374 # from buildbot HTML pages to your project's home page. 368 # from buildbot HTML pages to your project's home page.
375 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 369 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
376 370
377 # vi: set ts=4 sts=2 sw=2 et: 371 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/slaves.cfg ('k') | masters/master.tryserver.chromium.win/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698