Skip to content

Commit 1db6b80

Browse files
authored
Add a workaround for actions/runner-images#10001 (#296)
1 parent 1a522fa commit 1db6b80

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,16 @@ jobs:
4646
rust: stable
4747
steps:
4848
- uses: actions/checkout@v4
49-
- name: Install deps on linux
49+
- name: Install dependencies (Linux)
5050
if: startsWith(matrix.os, 'ubuntu')
5151
run: |
5252
sudo apt update
5353
sudo apt install gcc libxxf86vm-dev libosmesa6-dev libgles2-mesa-dev -y
54+
- name: Upgrade LLVM (Windows)
55+
if: runner.os == 'Windows'
56+
run: |
57+
choco upgrade llvm --version=17.0.6 -y
58+
echo "LLVM_PATH=C:\Program Files\LLVM\bin" >> $GITHUB_ENV
5459
- name: Install rust
5560
id: toolchain
5661
uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)