Skip to content

Commit 640f6f7

Browse files
authored
Merge pull request #260 from mozilla/ahal/push-zyzwlsknxvts
Bug 2001730 - Use proper provisioning profile for enterprise mac-signing
2 parents a80683d + d309ff2 commit 640f6f7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

taskcluster/gecko_taskgraph/transforms/hardened_signing.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
PROVISIONING_PROFILE_FILENAMES = {
1919
"firefox": "orgmozillafirefox.provisionprofile",
2020
"devedition": "orgmozillafirefoxdeveloperedition.provisionprofile",
21+
"enterprise": "orgmozillafirefoxenterprise.provisionprofile",
2122
"nightly": "orgmozillanightly.provisionprofile",
2223
}
2324

@@ -90,6 +91,9 @@ def add_provisioning_profile_config(config, jobs):
9091
elif config.params["project"] == "mozilla-central":
9192
# Nightly
9293
filename = PROVISIONING_PROFILE_FILENAMES["nightly"]
94+
elif config.params["project"] == "enterprise-firefox":
95+
# Enterprise
96+
filename = PROVISIONING_PROFILE_FILENAMES["enterprise"]
9397
else:
9498
# Release, beta, esr and variants should all use default firefox app id
9599
# For full list of projects, see RELEASE_PROJECTS in taskcluster/gecko_taskgraph/util/attributes.py

0 commit comments

Comments
 (0)