diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-09-15 11:23:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 11:23:08 (GMT) |
commit | 316f0ee874f420a900168da29b913582b3877e63 (patch) | |
tree | b35a73531d77e83b04fb83b629d28493116a378a /.azure-pipelines/pr.yml | |
parent | dba95c546b80495e9d80e85cbfd6cb8790090943 (diff) | |
download | cpython-316f0ee874f420a900168da29b913582b3877e63.zip cpython-316f0ee874f420a900168da29b913582b3877e63.tar.gz cpython-316f0ee874f420a900168da29b913582b3877e63.tar.bz2 |
[3.12] gh-109395: Remove skipped macOS builds from Azure Pipelines (GH-109400) (#109441)
gh-109395: Remove skipped macOS builds from Azure Pipelines (GH-109400)
(cherry picked from commit 1ece084be3684e06101aa1efa82d3ed98c99c432)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to '.azure-pipelines/pr.yml')
-rw-r--r-- | .azure-pipelines/pr.yml | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 5f05236..0836c78 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -11,26 +11,6 @@ jobs: - template: ./prebuild-checks.yml -- job: macOS_PR_Tests - displayName: macOS PR Tests - dependsOn: Prebuild - #condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) - # bpo-39837: macOS tests on Azure Pipelines are disabled - condition: false - - variables: - testRunTitle: '$(system.pullRequest.TargetBranch)-macos' - testRunPlatform: macos - - pool: - vmImage: macos-10.15 - - steps: - - template: ./macos-steps.yml - parameters: - targetBranch: $(System.PullRequest.TargetBranch) - - - job: Ubuntu_PR_Tests displayName: Ubuntu PR Tests dependsOn: Prebuild |