Install musl-tools for musl build

This commit is contained in:
Marcin Kulik
2024-04-19 16:34:17 +02:00
parent 2da5b10088
commit a0e3efda80

View File

@@ -66,6 +66,14 @@ jobs:
with:
tool: cross
- name: Install build deps
shell: bash
run: |
if [[ ${{ matrix.target }} == x86_64-unknown-linux-musl ]]; then
sudo apt-get update
sudo apt-get install -y musl-tools
fi
- name: Overwrite build command env variable
if: matrix.use-cross
shell: bash