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 56bfe7c commit a97f5feCopy full SHA for a97f5fe
.github/workflows/release.yml
@@ -35,6 +35,14 @@ jobs:
35
gcc-riscv64-linux-gnu g++-riscv64-linux-gnu \
36
gcc-powerpc64le-linux-gnu g++-powerpc64le-linux-gnu \
37
gcc-s390x-linux-gnu g++-s390x-linux-gnu
38
+ - name: Get musl cross-compilers
39
+ run: |
40
+ for musl_arch in x86_64 aarch64 riscv64; do
41
+ wget "https://musl.cc/${musl_arch}-linux-musl-cross.tgz" -O "${musl_arch}-linux-musl-cross.tgz"
42
+ tar -xf "${musl_arch}-linux-musl-cross.tgz"
43
+
44
+ echo "$(pwd)/${musl_arch}-linux-musl-cross/bin" >> $GITHUB_PATH
45
+ done
46
- uses: erlef/setup-beam@v1
47
with:
48
otp-version: ${{ matrix.otp_version }}
0 commit comments