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

Unified Diff: masters/master.tryserver.chromium.mac/master.cfg

Issue 2313973002: tryserver.chromium.mac: use chromium_trybot recipe in chromium/src (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.tryserver.chromium.mac/master.cfg
diff --git a/masters/master.tryserver.chromium.mac/master.cfg b/masters/master.tryserver.chromium.mac/master.cfg
index e814e6faecb8c83a0eaacb331eae6b8d3523428d..5996f3f839fb2957851b7a4a367a3524a47d04d1 100644
--- a/masters/master.tryserver.chromium.mac/master.cfg
+++ b/masters/master.tryserver.chromium.mac/master.cfg
@@ -65,6 +65,16 @@ def m_remote_run(recipe, **kwargs):
**kwargs)
+def m_remote_run_chromium_src(recipe, **kwargs):
+ return remote_run_factory.RemoteRunFactory(
+ active_master=ActiveMaster,
+ repository='https://chromium.googlesource.com/chromium/src.git',
+ recipe=recipe,
+ factory_properties={'path_config': 'kitchen'},
+ use_gitiles=True,
+ **kwargs)
+
+
b_ios_simulator = {
'name': 'ios-simulator',
'factory': base_factory('ios/try'),
@@ -90,39 +100,39 @@ chromium_builders = []
for targ in ('_rel', '_dbg'):
chromium_builders.extend([{
'name': 'mac_chromium_compile%s_ng' % targ,
- 'factory': m_remote_run(
+ 'factory': m_remote_run_chromium_src(
'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME),
'slavebuilddir': 'remote_run'
}])
chromium_builders.append({
'name': 'mac_chromium_rel_ng',
- 'factory': m_remote_run(
+ 'factory': m_remote_run_chromium_src(
'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME),
'slavebuilddir': 'remote_run'
})
chromium_builders.append({
'name': 'mac_chromium_dbg_ng',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
'slavebuilddir': 'remote_run'
})
chromium_builders.append({
'name': 'mac_chromium_10.10_rel_ng',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
'slavebuilddir': 'remote_run'
})
chromium_builders.append({
'name': 'mac_chromium_10.10_macviews',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
'slavebuilddir': 'remote_run'
})
chromium_builders.append({
'name': 'mac_chromium_archive_rel_ng',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
'slavebuilddir': 'remote_run'
})
@@ -140,14 +150,14 @@ chromium_builders.append({
chromium_builders.append({
'name': 'mac_chromium_asan_rel_ng',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
'slavebuilddir': 'remote_run'
})
# Optional GPU tryserver
chromium_builders.append({
'name': 'mac_optional_gpu_tests_rel',
- 'factory': m_remote_run('chromium_trybot', timeout=3600),
+ 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=3600),
# Share build directory with compatible existing builders to save space.
'slavebuilddir': 'mac'
})
« 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