[fenix] Bug 1580778 - Fix duplicated scopes (https://github.com/mozilla-mobile/fenix/pull/5515)

pull/600/head
Johan Lorenzo 5 years ago committed by GitHub
parent a9dad8ba08
commit 809512f956

@ -46,7 +46,9 @@ def configure_gradlew(config, job, taskdesc):
run["command"] = _extract_command(run)
secrets = run.pop("secrets", [])
scopes = taskdesc.setdefault("scopes", [])
scopes.extend(["secrets:get:{}".format(secret["name"]) for secret in secrets])
new_secret_scopes = ["secrets:get:{}".format(secret["name"]) for secret in secrets]
new_secret_scopes = list(set(new_secret_scopes)) # Scopes must not have any duplicates
scopes.extend(new_secret_scopes)
run["cwd"] = "{checkout}"
run["using"] = "run-task"

Loading…
Cancel
Save