Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,16 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.job.target }}
if: matrix.job.os != 'ubuntu-22.04'

- name: Install Rust toolchain (pinned for older glibc)
uses: dtolnay/rust-toolchain@1.93.0
with:
toolchain: stable
target: ${{ matrix.job.target }}
override: true
if: matrix.job.os == 'ubuntu-22.04'

- name: Build
shell: bash
Expand Down
Loading