Skip to content

Commit

Permalink
Backed out changeset 3c7a1fb33462 (bug 1493071) for breaking Gecko De…
Browse files Browse the repository at this point in the history
…cision Task. CLOSED TREE
  • Loading branch information
cristianbrindusan committed Sep 24, 2018
1 parent 1bb8ad7 commit 213ac9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
job:
type: decision-task
treeherder-symbol: Rel
target-tasks-method: cron_bouncer_check
target-tasks-method: bouncer_check
run-on-projects:
- mozilla-beta
- mozilla-release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ job-defaults:
name: bouncer-check
description: bouncer check
run-on-projects: [] # to make sure this never runs as part of CI
shipping-phase: push
worker-type: aws-provisioner-v1/gecko-{level}-b-linux
worker:
max-run-time: 1200
Expand Down
4 changes: 2 additions & 2 deletions taskcluster/taskgraph/target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,11 +593,11 @@ def filter(task):
return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]


@_target_task('cron_bouncer_check')
@_target_task('bouncer_check')
def target_tasks_bouncer_check(full_task_graph, parameters, graph_config):
"""Select the set of tasks required to perform bouncer version verification.
"""
def filter(task):
# For now any task in the repo-update kind is ok
return task.kind in ['cron-bouncer-check']
return task.kind in ['bouncer-check']
return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]

0 comments on commit 213ac9b

Please sign in to comment.