Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Jan 26, 2025
1 parent 4e033fc commit d8ef9d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/manual_test_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ jobs:
##presets
set +x ; set +e
#-------------#
if [ "${{ matrix.runner }}" == "ubuntu-24.04-arm" ]; then
if [ "${{ github.event.inputs.host }}" != "ALL" ] && \
[ "${{ github.event.inputs.host }}" != "aarch64-Linux" ]; then
if [[ "${{ matrix.runner }}" == "ubuntu-24.04-arm" ]]; then
if [[ "${{ github.event.inputs.host }}" != "ALL" && \
"${{ github.event.inputs.host }}" != "aarch64-Linux" ]]; then
exit 0
fi
elif [ "${{ matrix.runner }}" == "ubuntu-latest" ]; then
if [ "${{ github.event.inputs.host }}" != "ALL" ] && \
[ "${{ github.event.inputs.host }}" != "x86_64-Linux" ]; then
elif [[ "${{ matrix.runner }}" == "ubuntu-latest" ]]; then
if [[ "${{ github.event.inputs.host }}" != "ALL" && \
"${{ github.event.inputs.host }}" != "x86_64-Linux" ]]; then
exit 0
fi
fi
Expand Down

0 comments on commit d8ef9d7

Please sign in to comment.