Bug 1360609 - Use the "trunk" alias from bug 1372721 for toolchain jobs. r?dustin draft
authorMike Hommey <mh+mozilla@glandium.org>
Thu, 15 Jun 2017 17:51:28 +0900
changeset 594652 c1d7d4dd3e22a53e5f1e874739f122b72c46e482
parent 594651 7df24620bcb1484bfa6cbb92b43530dba4374d29
child 633491 00166ebf902df0051e13cd85a8f4ae516229ba56
push id64104
push userbmo:mh+mozilla@glandium.org
push dateThu, 15 Jun 2017 08:52:44 +0000
reviewersdustin
bugs1360609, 1372721
milestone56.0a1
Bug 1360609 - Use the "trunk" alias from bug 1372721 for toolchain jobs. r?dustin
taskcluster/taskgraph/transforms/job/toolchain.py
--- a/taskcluster/taskgraph/transforms/job/toolchain.py
+++ b/taskcluster/taskgraph/transforms/job/toolchain.py
@@ -66,18 +66,17 @@ def add_optimizations(config, run, taskd
     # ... and cache at the lowest level.
     taskdesc.setdefault('routes', []).append(
         'index.{}'.format(TOOLCHAIN_INDEX.format(**subs)))
 
 
 @run_job_using("docker-worker", "toolchain-script", schema=toolchain_run_schema)
 def docker_worker_toolchain(config, job, taskdesc):
     run = job['run']
-    taskdesc['run-on-projects'] = ['autoland', 'mozilla-inbound',
-                                   'mozilla-central', 'try']
+    taskdesc['run-on-projects'] = ['trunk', 'try']
 
     worker = taskdesc['worker']
     worker['artifacts'] = []
     worker['caches'] = []
 
     worker['artifacts'].append({
         'name': 'public',
         'path': '/home/worker/workspace/artifacts/',
@@ -132,18 +131,17 @@ def docker_worker_toolchain(config, job,
     ]
 
     add_optimizations(config, run, taskdesc)
 
 
 @run_job_using("generic-worker", "toolchain-script", schema=toolchain_run_schema)
 def windows_toolchain(config, job, taskdesc):
     run = job['run']
-    taskdesc['run-on-projects'] = ['autoland', 'mozilla-inbound',
-                                   'mozilla-central', 'try']
+    taskdesc['run-on-projects'] = ['trunk', 'try']
 
     worker = taskdesc['worker']
 
     worker['artifacts'] = [{
         'path': r'public\build',
         'type': 'directory',
     }]