From 09cfa2848247d226bbd3b5e4190bce0998a05ff8 Mon Sep 17 00:00:00 2001 From: Mihai Tabara Date: Tue, 13 Aug 2019 20:14:08 +0100 Subject: [PATCH] Bug 1573512 - rename codecov secret to something more generic for master and PR to reuse (#4705) Force merging since we're blocked on this change and TaskCluster is stuck after 4 hours. --- automation/taskcluster/lib/tasks.py | 6 +++--- automation/taskcluster/upload_coverage_report.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index 6ce1638a3..e7725ca78 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -183,10 +183,10 @@ class TaskBuilder(object): 'tier': 1, }, scopes=[ - 'secrets:get:project/mobile/fenix/pr' + 'secrets:get:project/mobile/fenix/public-tokens' ] ) - + def craft_ui_tests_task(self): artifacts = { "public": { @@ -226,7 +226,7 @@ class TaskBuilder(object): artifacts=artifacts, env_vars=env_vars, ) - + def craft_upload_apk_nimbledroid_task(self, assemble_task_id): # For GeckoView, upload nightly (it has release config) by default, all Release builds have WV return self._craft_build_ish_task( diff --git a/automation/taskcluster/upload_coverage_report.sh b/automation/taskcluster/upload_coverage_report.sh index 137b1fa6b..7e9cabd4c 100755 --- a/automation/taskcluster/upload_coverage_report.sh +++ b/automation/taskcluster/upload_coverage_report.sh @@ -7,7 +7,7 @@ set -ex # Get token for uploading to codecov and append it to codecov.yml python automation/taskcluster/helper/get-secret.py \ - -s project/mobile/fenix/pr \ + -s project/mobile/fenix/public-tokens \ -k codecov \ -f .cc_token \