From d6d844a656a61c3637e5b52621ba646f92fe8ef3 Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Wed, 30 Jan 2019 16:51:03 +0100 Subject: [PATCH] Issue #267: Enable taskcluster proxy feature for build task. This is needed so that the build task can connect to the secrets service in order to receive the Sentry token. --- automation/taskcluster/decision_task_nightly.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automation/taskcluster/decision_task_nightly.py b/automation/taskcluster/decision_task_nightly.py index 9b8ab0892..d9d825358 100644 --- a/automation/taskcluster/decision_task_nightly.py +++ b/automation/taskcluster/decision_task_nightly.py @@ -45,7 +45,8 @@ def generate_build_task(apks, is_staging): ' -s project/mobile/fenix/sentry -k dsn -f .sentry_token' ' && ./gradlew --no-daemon -PcrashReports=true clean test assembleRelease'), features={ - "chainOfTrust": True + "chainOfTrust": True, + "taskClusterProxy": True }, artifacts=artifacts, worker_type='android-components-g' if is_staging else 'gecko-focus',