summaryrefslogtreecommitdiffstats
path: root/.azure-pipelines/pr.yml
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2023-09-20 18:56:42 (GMT)
committerGitHub <noreply@github.com>2023-09-20 18:56:42 (GMT)
commit14cdefa667f211401c9dfab33c4695e80b4e5e95 (patch)
treeb792a7ae02a60fdc1fc404302f8b9166d67b4bfb /.azure-pipelines/pr.yml
parentef6d475db3af4d30a3104fa6301dcd36c71eacab (diff)
downloadcpython-14cdefa667f211401c9dfab33c4695e80b4e5e95.zip
cpython-14cdefa667f211401c9dfab33c4695e80b4e5e95.tar.gz
cpython-14cdefa667f211401c9dfab33c4695e80b4e5e95.tar.bz2
gh-109408: Move Windows builds from Azure Pipelines PR to GitHub Actions (#109569)
Diffstat (limited to '.azure-pipelines/pr.yml')
-rw-r--r--.azure-pipelines/pr.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml
index daa2c7c..335a4b4 100644
--- a/.azure-pipelines/pr.yml
+++ b/.azure-pipelines/pr.yml
@@ -26,34 +26,3 @@ jobs:
steps:
- template: ./posix-steps.yml
-
-
-- job: Windows_PR_Tests
- displayName: Windows PR Tests
- dependsOn: Prebuild
- condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
-
- pool:
- vmImage: windows-2022
-
- strategy:
- matrix:
- win32:
- arch: win32
- buildOpt: '-p Win32'
- testRunTitle: '$(System.PullRequest.TargetBranch)-win32'
- testRunPlatform: win32
- win64:
- arch: amd64
- buildOpt: '-p x64'
- testRunTitle: '$(System.PullRequest.TargetBranch)-win64'
- testRunPlatform: win64
- winarm64:
- arch: arm64
- buildOpt: '-p arm64'
- maxParallel: 4
-
- steps:
- - template: ./windows-steps.yml
- parameters:
- targetBranch: $(System.PullRequest.TargetBranch)