File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
taskcluster/gecko_taskgraph/transforms Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1818PROVISIONING_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
You can’t perform that action at this time.
0 commit comments