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 dad4588 commit 4e033fc
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 @@ -72,14 +72,14 @@ jobs:
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
exit 0
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
exit 0
if [ "${{ github.event.inputs.host }}" != "ALL" ] && \
[ "${{ github.event.inputs.host }}" != "x86_64-Linux" ]; then
exit 0
fi
fi
continue-on-error: false
Expand Down

0 comments on commit 4e033fc

Please sign in to comment.