aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2022-01-17 18:05:16 +0000
committerGitHub <noreply@github.com>2022-01-17 18:05:16 +0000
commitd6c6e6ba739ee714e5706144853008f1eed446ba (patch)
treeae33752a9379b35b50d06cdc2d41605f6162c1fe /.azure-pipelines
parentc118c2455c95baea08045dc64963600b7a56b6fd (diff)
downloadcpython3-d6c6e6ba739ee714e5706144853008f1eed446ba.tar.gz
Skip signing side-loadable MSIX for Windows (GH-30644)
We currently do not release these files, and so there's nothing lost by signing them. Our code signing certificate is somehow incompatible with signing MSIX files. We may be able to re-enable this when we next renew, or if Microsoft updates their signing tool to work with our certificate.
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/windows-release/stage-pack-msix.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.azure-pipelines/windows-release/stage-pack-msix.yml b/.azure-pipelines/windows-release/stage-pack-msix.yml
index f967cfdbe3..6f3e7a5e5d 100644
--- a/.azure-pipelines/windows-release/stage-pack-msix.yml
+++ b/.azure-pipelines/windows-release/stage-pack-msix.yml
@@ -96,7 +96,9 @@ jobs:
displayName: Sign side-loadable MSIX bundles
dependsOn:
- Pack_MSIX
- condition: and(succeeded(), variables['SigningCertificate'])
+ # Our current certificate does not support MSIX signing, so we unconditionally skip this step
+ #condition: and(succeeded(), variables['SigningCertificate'])
+ condition: false
pool:
name: 'Windows Release'