Skip to content

Commit

Permalink
fix: debian 12 libc compatibility (#1710)
Browse files Browse the repository at this point in the history
Should fix debian libc problem mentioned in #578

---------

Co-authored-by: Frank Elsinga <[email protected]>
  • Loading branch information
mr-sven and CommanderStorm authored Mar 1, 2025
1 parent ebc6b83 commit cd299d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ jobs:
- target: aarch64-apple-darwin
os: macos-latest # M-series CPU
- target: debian-x86_64
os: ubuntu-latest
os: ubuntu-22.04 # downgraded to have lower libc support. Debian-12 (stable at the time of writing) does not support the same version ubuntu does.
# TODO: update to ubuntu-latest again once debian 13 launches
- target: x86_64-apple-darwin
os: macos-13 # x64 CPU
- target: x86_64-pc-windows-msvc
Expand All @@ -275,6 +276,8 @@ jobs:
- name: Rust Versions
run: rustc --version && cargo --version
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.os }}
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
- name: Install NASM for rustls/aws-lc-rs on Windows
if: runner.os == 'Windows'
Expand Down

0 comments on commit cd299d7

Please sign in to comment.