From d334decbe5f996048afcfad9ccf6f868586a89b1 Mon Sep 17 00:00:00 2001 From: Mihai Tabara Date: Mon, 11 Mar 2019 10:25:38 +0000 Subject: [PATCH] Fixes #935. Leanplum usage. --- automation/taskcluster/decision_task_nightly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/decision_task_nightly.py b/automation/taskcluster/decision_task_nightly.py index b5122fb618..4a3d6652fb 100644 --- a/automation/taskcluster/decision_task_nightly.py +++ b/automation/taskcluster/decision_task_nightly.py @@ -55,7 +55,7 @@ def generate_build_task(apks, is_staging): ' && python automation/taskcluster/helper/get-secret.py' ' -s {} -k dsn -f .sentry_token'.format(sentry_secret) + ' && python automation/taskcluster/helper/get-secret.py' - ' -s {} -k production -f .leanplum_token'.format(leanplum_token) + + ' -s {} -k production -f .leanplum_token'.format(leanplum_secret) + ' && ./gradlew --no-daemon -PcrashReports=true clean test assembleRelease'), features={ "chainOfTrust": True, @@ -63,7 +63,7 @@ def generate_build_task(apks, is_staging): }, artifacts=artifacts, scopes=[ - "secrets:get:{}".format(sentry_secret) + "secrets:get:{}".format(sentry_secret), "secrets:get:{}".format(leanplum_secret) ] )