Skip to content

Commit

Permalink
Fix ubuntu-24.04 builds in pypi workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gbolmier committed Nov 25, 2024
1 parent 9ebc7bb commit 2951fdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up rust
if: matrix.os != 'ubuntu-20.04' && matrix.os != 'ubuntu-22.04'
if: matrix.os != 'ubuntu-20.04' && matrix.os != 'ubuntu-22.04' && matrix.os != 'ubuntu-24.04'
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
Expand All @@ -43,7 +43,7 @@ jobs:
if: matrix.os == 'windows-2019' || matrix.os == 'windows-2022'

- name: Set up QEMU
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04'
uses: docker/setup-qemu-action@v3
with:
platforms: all
Expand Down

0 comments on commit 2951fdb

Please sign in to comment.