Skip to content

Commit

Permalink
Only install musl if not compiling with cross
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Sep 21, 2024
1 parent 8bb8e5f commit bff9639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ runs:
if [[ ! -f musl-g++ ]]; then
sudo ln -s musl-gcc musl-g++
fi
if: contains(inputs.target, 'musl')
if: steps.determine-cross-compile.outputs.needs-cross != 'true' && contains(inputs.target, 'musl')
- name: Set build command
id: set-build-command
shell: bash
Expand Down

0 comments on commit bff9639

Please sign in to comment.