Private
Public Access
1
0

fix(ci): force IPv4 for rustup download on Alpine runner

This commit is contained in:
2026-05-17 20:35:48 +00:00
parent 1dc49bb76a
commit c3cde6745d

View File

@ -271,7 +271,7 @@ jobs:
- name: Install Rust
run: |
apk add --no-cache curl bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
curl --ipv4 --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
. "$HOME/.cargo/env"
rustup target add x86_64-unknown-linux-musl
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"