Skip to content

Commit

Permalink
Add a workaround for actions/runner-images#10001 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson authored Jun 11, 2024
1 parent 1a522fa commit 1db6b80
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,16 @@ jobs:
rust: stable
steps:
- uses: actions/checkout@v4
- name: Install deps on linux
- name: Install dependencies (Linux)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt update
sudo apt install gcc libxxf86vm-dev libosmesa6-dev libgles2-mesa-dev -y
- name: Upgrade LLVM (Windows)
if: runner.os == 'Windows'
run: |
choco upgrade llvm --version=17.0.6 -y
echo "LLVM_PATH=C:\Program Files\LLVM\bin" >> $GITHUB_ENV
- name: Install rust
id: toolchain
uses: dtolnay/rust-toolchain@master
Expand Down

0 comments on commit 1db6b80

Please sign in to comment.