8000 bpo-33351: Patches to build on clang-cl by isuruf · Pull Request #18371 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

8000 bpo-33351: Patches to build on clang-cl #18371

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove win32 clang-cl Azure jobs for now
  • Loading branch information
isuruf committed Feb 6, 2020
commit 7b8fb96552ef3c350011364cd095fe3d282f44b4
6 changes: 0 additions & 6 deletions .azure-pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,6 @@ jobs:
installClang: no
testRunTitle: '$(Build.SourceBranchName)-win64'
testRunPlatform: win64
win32_clang_cl:
arch: win32
buildOpt: '"/p:CLToolExe=clang-cl.exe" "/p:CLToolPath=C:\Program Files (x86)\LLVM\bin"'
installClang: yes
testRunTitle: '$(Build.SourceBranchName)-clang_cl-win32'
testRunPlatform: win32
win64_clang_cl:
arch: amd64
buildOpt: '-p x64 "/p:CLToolExe=clang-cl.exe" "/p:CLToolPath=C:\Program Files\LLVM\bin"'
Expand Down
Empty file added .azure-pipelines/pr
Empty file.
9 changes: 9 additions & 0 deletions .azure-pipelines/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,25 @@ jobs:
win32:
arch: win32
buildOpt:
installClang: no
testRunTitle: '$(System.PullRequest.TargetBranch)-win32'
testRunPlatform: win32
win64:
arch: amd64
buildOpt: '-p x64'
installClang: no
testRunTitle: '$(System.PullRequest.TargetBranch)-win64'
testRunPlatform: win64
winarm64:
arch: arm64
buildOpt: '-p arm64'
installClang: no
win64_clang_cl:
arch: amd64
buildOpt: '-p x64 "/p:CLToolExe=clang-cl.exe" "/p:CLToolPath=C:\Program Files\LLVM\bin"'
installClang: yes
testRunTitle: '$(Build.SourceBranchName)-clang_cl-win64'
testRunPlatform: win64
maxParallel: 4

steps:
Expand Down
0