Excerpts from here #131526 (comment):
See e.g. https://github.com/python/cpython/actions/runs/14006628024/job/39221297660 and https://github.com/python/cpython/actions/runs/13954576580/job/39062383429#step:4:326.
After building, no more output can be seen.
This is interesting, because
|
- name: Native Windows (debug) |
|
if: runner.os == 'Windows' && matrix.architecture != 'ARM64' |
|
shell: cmd |
|
run: | |
|
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.5 |
|
set PlatformToolset=clangcl |
|
set LLVMToolsVersion=${{ matrix.llvm }}.1.5 |
|
set LLVMInstallDir=C:\Program Files\LLVM |
|
./PCbuild/build.bat --tail-call-interp -d -p ${{ matrix.architecture }} |
|
./PCbuild/rt.bat -d -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3 |
clearly
./PCbuild/rt.bat is invoked. Maybe the reason is, because it is not used with backslashes like in
The question then is, why
./PCbuild/build.bat is working ...
Linked PRs
Excerpts from here #131526 (comment):
See e.g. https://github.com/python/cpython/actions/runs/14006628024/job/39221297660 and https://github.com/python/cpython/actions/runs/13954576580/job/39062383429#step:4:326.
After building, no more output can be seen.
This is interesting, because
cpython/.github/workflows/tail-call.yml
Lines 82 to 91 in ce79274
clearly
./PCbuild/rt.batis invoked. Maybe the reason is, because it is not used with backslashes like incpython/.github/workflows/reusable-windows.yml
Line 52 in ce79274
The question then is, why
./PCbuild/build.batis working ...Linked PRs