Skip to content

Commit 2fd25a1

Browse files
authored
Fix github workflow: force IPv4 for musl toolchain
1 parent 69d6f1b commit 2fd25a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-fio.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
9191
# download musl cross compilation toolchain
9292
cd ~
93-
curl -L "https://musl.cc/\$CROSS-cross.tgz" -o "\$CROSS-cross.tgz"
93+
curl -L -4 --retry 5 --retry-all-errors --retry-delay 2 --connect-timeout 15 "https://musl.cc/\$CROSS-cross.tgz" -o "\$CROSS-cross.tgz"
9494
tar xf "\$CROSS-cross.tgz"
9595
9696
# download, compile, and install libaio as static library

0 commit comments

Comments
 (0)