We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5b4f5 commit 251589fCopy full SHA for 251589f
.github/workflows/release.yml
@@ -40,7 +40,8 @@ jobs:
40
- name: Get musl cross-compilers
41
run: |
42
for musl_arch in x86_64 aarch64 riscv64; do
43
- wget "https://musl.cc/${musl_arch}-linux-musl-cross.tgz" -O "${musl_arch}-linux-musl-cross.tgz"
+ # We use a musl.cc mirror, see https://github.com/orgs/community/discussions/27906.
44
+ wget "https://joeyparrish.github.io/musl-cc-mirror/${musl_arch}-linux-musl-cross.tgz" -O "${musl_arch}-linux-musl-cross.tgz"
45
tar -xf "${musl_arch}-linux-musl-cross.tgz"
46
47
echo "$(pwd)/${musl_arch}-linux-musl-cross/bin" >> $GITHUB_PATH
0 commit comments