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

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 2447433002: Revert "chromium.fyi: convert ios/unified_builder_tester builders to remote_run" (Closed)
Patch Set: Created 4 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # vim: ft=python: 1 # vim: ft=python:
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from buildbot.changes.filter import ChangeFilter 6 from buildbot.changes.filter import ChangeFilter
7 from buildbot.process.properties import WithProperties 7 from buildbot.process.properties import WithProperties
8 from buildbot.scheduler import Dependent 8 from buildbot.scheduler import Dependent
9 from buildbot.scheduler import Nightly 9 from buildbot.scheduler import Nightly
10 from buildbot.scheduler import Periodic 10 from buildbot.scheduler import Periodic
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 } 790 }
791 b_clang_tot_mac_asan_tester = { 791 b_clang_tot_mac_asan_tester = {
792 'name': 'ClangToTMacASan tester', 792 'name': 'ClangToTMacASan tester',
793 'factory': m_remote_run_chromium_src('chromium'), 793 'factory': m_remote_run_chromium_src('chromium'),
794 'category': 'clang tot', 794 'category': 'clang tot',
795 'auto_reboot': True, 795 'auto_reboot': True,
796 } 796 }
797 797
798 b_clang_tot_ios = { 798 b_clang_tot_ios = {
799 'name': 'ClangToTiOS', 799 'name': 'ClangToTiOS',
800 'factory': m_remote_run('ios/unified_builder_tester'), 800 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
801 'ios/unified_builder_tester'
802 ),
801 'category': 'clang tot', 803 'category': 'clang tot',
802 'auto_reboot': True, 804 'auto_reboot': True,
803 } 805 }
804 806
805 b_clang_tot_win = { 807 b_clang_tot_win = {
806 'name': 'ClangToTWin', 808 'name': 'ClangToTWin',
807 'factory': m_remote_run_chromium_src('chromium', triggers=['clang_tot_win']), 809 'factory': m_remote_run_chromium_src('chromium', triggers=['clang_tot_win']),
808 'category': 'clang tot', 810 'category': 'clang tot',
809 'auto_reboot': True, 811 'auto_reboot': True,
810 } 812 }
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 b_chromium_libfuzzer_upload_mac_asan = { 1212 b_chromium_libfuzzer_upload_mac_asan = {
1211 'name': 'Libfuzzer Upload Mac ASan', 1213 'name': 'Libfuzzer Upload Mac ASan',
1212 'factory': m_annotator.BaseFactory('chromium_libfuzzer', 1214 'factory': m_annotator.BaseFactory('chromium_libfuzzer',
1213 timeout=24000), 1215 timeout=24000),
1214 'category': 'chromium_libfuzzer', 1216 'category': 'chromium_libfuzzer',
1215 'auto_reboot': True, 1217 'auto_reboot': True,
1216 } 1218 }
1217 1219
1218 b_earlgrey_ios = { 1220 b_earlgrey_ios = {
1219 'name': 'EarlGreyiOS', 1221 'name': 'EarlGreyiOS',
1220 'factory': m_remote_run('ios/unified_builder_tester'), 1222 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
1223 'ios/unified_builder_tester'
1224 ),
1221 'category': 'earlgrey', 1225 'category': 'earlgrey',
1222 'auto_reboot': True, 1226 'auto_reboot': True,
1223 } 1227 }
1224 1228
1225 b_gomacanary_ios = { 1229 b_gomacanary_ios = {
1226 'name': 'GomaCanaryiOS', 1230 'name': 'GomaCanaryiOS',
1227 'factory': m_remote_run('ios/unified_builder_tester'), 1231 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
1232 'ios/unified_builder_tester'
1233 ),
1228 'category': 'goma', 1234 'category': 'goma',
1229 'auto_reboot': True, 1235 'auto_reboot': True,
1230 } 1236 }
1231 1237
1232 b_mojo_chromiumos = { 1238 b_mojo_chromiumos = {
1233 'name': 'Mojo ChromiumOS', 1239 'name': 'Mojo ChromiumOS',
1234 'factory': m_remote_run_chromium_src('chromium'), 1240 'factory': m_remote_run_chromium_src('chromium'),
1235 'category': 'mojo', 1241 'category': 'mojo',
1236 'auto_reboot': True, 1242 'auto_reboot': True,
1237 } 1243 }
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
1549 ])) 1555 ]))
1550 1556
1551 c['status'].append(MailNotifier( 1557 c['status'].append(MailNotifier(
1552 fromaddr=ActiveMaster.from_address, # Reply-To address 1558 fromaddr=ActiveMaster.from_address, # Reply-To address
1553 mode='failing', 1559 mode='failing',
1554 relayhost=config.Master.smtp, 1560 relayhost=config.Master.smtp,
1555 subject='Build failure on %(builder)s', 1561 subject='Build failure on %(builder)s',
1556 extraRecipients=['sbc@chromium.org'], 1562 extraRecipients=['sbc@chromium.org'],
1557 sendToInterestedUsers=False, 1563 sendToInterestedUsers=False,
1558 builders=['Linux ARM'])) 1564 builders=['Linux ARM']))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698