1
0
Fork 0

For #1005 - adds routes param to buildtask

master
Jeff Boek 2019-03-26 09:19:25 -07:00
parent cf0d1355b5
commit 5d2447c661
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ class TaskBuilder(object):
self.scheduler_id = scheduler_id
self.build_worker_type = build_worker_type
def build_task(self, name, description, command, artifacts, features, scopes=[]):
def build_task(self, name, description, command, artifacts, features, scopes=[], routes=[]):
created = datetime.datetime.now()
expires = taskcluster.fromNow('1 year')
deadline = taskcluster.fromNow('1 day')
@ -31,7 +31,7 @@ class TaskBuilder(object):
"priority": "lowest",
"deadline": taskcluster.stringDate(deadline),
"dependencies": [self.task_id],
"routes": [],
"routes": routes,
"scopes": scopes,
"requires": "all-completed",
"payload": {