| 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'
|
| })
|
|
|