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

Side by Side Diff: masters/master.client.v8.ports/master.cfg

Issue 1862083002: V8: Add s390 bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Mail notifier 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 3
4 # Copyright 2016 The Chromium Authors. All rights reserved. 4 # Copyright 2016 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 from buildbot.schedulers.basic import SingleBranchScheduler 8 from buildbot.schedulers.basic import SingleBranchScheduler
9 9
10 from master import gitiles_poller 10 from master import gitiles_poller
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ] 42 ]
43 43
44 44
45 ####### FACTORIES 45 ####### FACTORIES
46 46
47 F = annotator_factory.AnnotatorFactory().BaseFactory 47 F = annotator_factory.AnnotatorFactory().BaseFactory
48 48
49 49
50 ####### BUILDER SPECS 50 ####### BUILDER SPECS
51 51
52 CATEGORY_X87 = '1X87|x87' 52 CATEGORY_S390 = '1S390|s390'
53 CATEGORY_X87 = '2X87|x87'
Sergiy Byelozyorov 2016/04/06 16:42:07 Is 1X87->2X97 change intentional? This doesn't see
Michael Achenbach 2016/04/06 17:36:43 Yes. The 1 and 2 offsets cant be seen. This just m
53 54
54 scheduled_builders = [ 55 scheduled_builders = [
55 { 56 {
57 'name': 'V8 Linux - s390 - sim',
58 'factory': F('v8'),
59 'category': CATEGORY_S390,
60 'auto_reboot' : False,
61 },
62 {
63 'name': 'V8 Linux - s390x - sim',
64 'factory': F('v8'),
65 'category': CATEGORY_S390,
66 'auto_reboot' : False,
67 },
68 {
56 'name': 'V8 Linux - x87 - nosnap - debug builder', 69 'name': 'V8 Linux - x87 - nosnap - debug builder',
57 'factory': F('v8'), 70 'factory': F('v8'),
58 'category': CATEGORY_X87, 71 'category': CATEGORY_X87,
59 'auto_reboot' : False, 72 'auto_reboot' : False,
60 }, 73 },
61 ] 74 ]
62 75
63 triggered_builders = [ 76 triggered_builders = [
64 { 77 {
65 'name': 'V8 Linux - x87 - nosnap - debug', 78 'name': 'V8 Linux - x87 - nosnap - debug',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 mail_notifier_cfg.Update(config, ActiveMaster, c) 137 mail_notifier_cfg.Update(config, ActiveMaster, c)
125 138
126 # Adjust the buildCaches to be 3x the number of slaves per builder. 139 # Adjust the buildCaches to be 3x the number of slaves per builder.
127 c['autoBuildCacheRatio'] = 3 140 c['autoBuildCacheRatio'] = 3
128 141
129 142
130 ####### PROJECT IDENTITY 143 ####### PROJECT IDENTITY
131 144
132 c['projectName'] = ActiveMaster.project_name 145 c['projectName'] = ActiveMaster.project_name
133 c['projectURL'] = config.Master.project_url 146 c['projectURL'] = config.Master.project_url
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698