Skip to content

Commit 4e2d64b

Browse files
committed
ci: install QEMU on ARM Linux runner
1 parent 1662ad3 commit 4e2d64b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
name: CI (Python ${{ matrix.python }} on ${{ matrix.os }})
2323
runs-on: ${{ matrix.os }}
2424
strategy:
25+
fail-fast: false
2526
matrix:
2627
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2728
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-latest", "macos-15-intel", "windows-2022"]
@@ -30,6 +31,10 @@ jobs:
3031
- uses: astral-sh/setup-uv@v7
3132
with:
3233
python-version: ${{ matrix.python }}
34+
- if: matrix.os == 'ubuntu-24.04-arm'
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get -y install qemu-user-static
3338
- name: Install solc-select and test dependencies
3439
run: |
3540
uv sync --extra dev

0 commit comments

Comments
 (0)