mirror of
https://github.com/python/cpython.git
synced 2026-04-14 07:41:00 +00:00
Update pre-commit with zizmor and Ruff fixes (#143095)
This commit is contained in:
parent
6536fab194
commit
f783cc37eb
3 changed files with 18 additions and 14 deletions
13
.github/workflows/tail-call.yml
vendored
13
.github/workflows/tail-call.yml
vendored
|
|
@ -81,22 +81,23 @@ jobs:
|
|||
|
||||
- name: Native Windows MSVC (release)
|
||||
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
|
||||
shell: cmd
|
||||
shell: pwsh
|
||||
run: |
|
||||
choco install visualstudio2026buildtools --no-progress -y --force --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --locale en-US --passive"
|
||||
$env:PATH = "C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\bin;$env:PATH"
|
||||
./PCbuild/build.bat --tail-call-interp -c Release -p ${{ matrix.architecture }} "/p:PlatformToolset=v145"
|
||||
$env:PlatformToolset = "v145"
|
||||
./PCbuild/build.bat --tail-call-interp -c Release -p ${{ matrix.architecture }}
|
||||
./PCbuild/rt.bat -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
|
||||
|
||||
# No tests (yet):
|
||||
- name: Emulated Windows Clang (release)
|
||||
if: runner.os == 'Windows' && matrix.architecture == 'ARM64'
|
||||
shell: cmd
|
||||
shell: pwsh
|
||||
run: |
|
||||
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
|
||||
set PlatformToolset=clangcl
|
||||
set LLVMToolsVersion=${{ matrix.llvm }}.1.0
|
||||
set LLVMInstallDir=C:\Program Files\LLVM
|
||||
$env:PlatformToolset = "clangcl"
|
||||
$env:LLVMToolsVersion = "${{ matrix.llvm }}.1.0"
|
||||
$env:LLVMInstallDir = "C:\Program Files\LLVM"
|
||||
./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
|
||||
|
||||
- name: Native macOS (release)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue