Skip to content

Commit

Permalink
Use stable toolchain for static build
Browse files Browse the repository at this point in the history
Ubuntu 22.04 glibc static is not compatible with rustc 1.58.1 (see
`ACTION_MSRV_TOOLCHAIN`). Means we now just use the latest one, since
the static builds are made for the community.

Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert committed Dec 13, 2022
1 parent d71f586 commit 5671bd0
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 @@ -72,7 +72,10 @@ jobs:
- name: Select Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env['ACTION_MSRV_TOOLCHAIN'] }}
# Ubuntu 22.04 glibc static is not compatible with rustc 1.58.1 (see
# ACTION_MSRV_TOOLCHAIN). Means we now just use the latest one, since
# the static builds are made for the community.
toolchain: stable
default: true
override: true
components: rustfmt
Expand Down

0 comments on commit 5671bd0

Please sign in to comment.