diff options
author | Steve Dower <steve.dower@microsoft.com> | 2019-01-08 10:38:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 10:38:01 (GMT) |
commit | 872bd2b57ce8e4ea7a54acb3934222c0e4e7276b (patch) | |
tree | cda6cc6c3823daa9bec4cd93ffc64c2bf54e886e /.azure-pipelines/ci.yml | |
parent | c24c6c2c9357da99961bf257078240529181daf3 (diff) | |
download | cpython-872bd2b57ce8e4ea7a54acb3934222c0e4e7276b.zip cpython-872bd2b57ce8e4ea7a54acb3934222c0e4e7276b.tar.gz cpython-872bd2b57ce8e4ea7a54acb3934222c0e4e7276b.tar.bz2 |
bpo-35596: Use unchecked PYCs for the embeddable distro to avoid zipimport restrictions (GH-11465)
Also adds extra steps to the CI build for Windows on Azure Pipelines to validate that the various layouts at least execute.
Diffstat (limited to '.azure-pipelines/ci.yml')
-rw-r--r-- | .azure-pipelines/ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 49a7bb6..78075bc 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -134,3 +134,13 @@ jobs: steps: - template: ./windows-steps.yml + + - template: ./windows-layout-steps.yml + parameters: + kind: nuget + - template: ./windows-layout-steps.yml + parameters: + kind: embed + - template: ./windows-layout-steps.yml + parameters: + kind: appx |