File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed
Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 8383 if : runner.os == 'Windows' && matrix.architecture != 'ARM64'
8484 shell : pwsh
8585 run : |
86- choco install visualstudio2026buildtools --no-progress -y --force --params "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --locale en-US --passive"
87- $env:PATH = "C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\bin;$env:PATH"
88- $env:PlatformToolset = "v145"
8986 ./PCbuild/build.bat --tail-call-interp -c Release -p ${{ matrix.architecture }}
9087 ./PCbuild/rt.bat -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
9188
@@ -94,21 +91,13 @@ jobs:
9491 if : runner.os == 'Windows' && matrix.architecture == 'ARM64'
9592 shell : pwsh
9693 run : |
97- choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
98- $env:PlatformToolset = "clangcl"
99- $env:LLVMToolsVersion = "${{ matrix.llvm }}.1.0"
100- $env:LLVMInstallDir = "C:\Program Files\LLVM"
10194 ./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
10295
10396 - name : Native macOS (release)
10497 if : runner.os == 'macOS'
10598 run : |
106- brew update
107- brew install llvm@${{ matrix.llvm }}
10899 export SDKROOT="$(xcrun --show-sdk-path)"
109- export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
110- export PATH="/opt/homebrew/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
111- CC=clang-20 ./configure --with-tail-call-interp
100+ ./configure --with-tail-call-interp
112101 make all --jobs 4
113102 ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
114103
You can’t perform that action at this time.
0 commit comments