]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Skip signing side-loadable MSIX for Windows (GH-30644)
authorSteve Dower <steve.dower@python.org>
Mon, 17 Jan 2022 18:05:16 +0000 (18:05 +0000)
committerGitHub <noreply@github.com>
Mon, 17 Jan 2022 18:05:16 +0000 (18:05 +0000)
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.

.azure-pipelines/windows-release/stage-pack-msix.yml

index f967cfdbe326f8dacb32dba12f99be4a878186a9..6f3e7a5e5d593cb7a0b83b8ab46c927767f79dfd 100644 (file)
@@ -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'