8000 [3.13] GH-124398: Pin LLVM to 18.1.0 for Windows JIT CI (GH-124399) (… · python/cpython@87d587f · GitHub
[go: up one dir, main page]

Skip to content

Commit 87d587f

Browse files
[3.13] GH-124398: Pin LLVM to 18.1.0 for Windows JIT CI (GH-124399) (#129380)
GH-124398: Pin LLVM to 18.1.0 for Windows JIT CI (GH-124399) (cherry picked from commit b4d0d7d) Co-authored-by: Savannah Ostrowski <savannahostrowski@gmail.com>
1 parent 5829f7b commit 87d587f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/jit.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
117117
- name: Native Windows
118118
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
119119
run: |
120-
choco upgrade llvm -y
121-
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
120+
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
122121
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.architecture }}
123122
./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
124123
125124
# No PGO or tests (yet):
126125
- name: Emulated Windows
127126
if: runner.os == 'Windows' && matrix.architecture == 'ARM64'
128127
run: |
129-
choco upgrade llvm -y
130-
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
128+
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
131129
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
132130
133131
- name: Native macOS

0 commit comments

Comments
 (0)
0