Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Second attempt at fixing the decision task by disabling the macOS 11.0 SDK toolchain build #50

Open
wants to merge 1 commit into
base: gonk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions taskcluster/taskgraph/target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,8 +725,13 @@ def target_tasks_kaios(full_task_graph, parameters, graph_config):
"""The set of tasks to run for kaios integration"""

def filter(task):
# Toolchains used for local development should always be built.
if task.attributes.get("local-toolchain"):
# Toolchains used for local development should always be built but not
# the macOS 11 SDK which has special requirements and breaks the
# decision task.
if (
task.attributes.get("local-toolchain")
and task.label != "toolchain-macosx64-sdk-11.0"
):
return True
# Run anything that is supposed to run on kaios. We don't use
# `filter_for_project`, since we don't want to run things that are
Expand Down