Fix github workflow: force IPv4 for musl toolchain

This commit is contained in:
Mason Rowe
2025-12-29 00:51:58 -05:00
committed by GitHub
parent 69d6f1bfe5
commit 2fd25a1a26

View File

@@ -90,7 +90,7 @@ jobs:
# download musl cross compilation toolchain # download musl cross compilation toolchain
cd ~ cd ~
curl -L "https://musl.cc/\$CROSS-cross.tgz" -o "\$CROSS-cross.tgz" curl -L -4 --retry 5 --retry-all-errors --retry-delay 2 --connect-timeout 15 "https://musl.cc/\$CROSS-cross.tgz" -o "\$CROSS-cross.tgz"
tar xf "\$CROSS-cross.tgz" tar xf "\$CROSS-cross.tgz"
# download, compile, and install libaio as static library # download, compile, and install libaio as static library