Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas committed Jan 26, 2025
1 parent d8ef9d7 commit 7d6d155
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/manual_test_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,11 @@ 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
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
if [[ "${{ github.event.inputs.host }}" != "ALL" ]] && [[ "${{ github.event.inputs.host }}" != "x86_64-Linux" ]]; then
exit 0
fi
fi
Expand Down

0 comments on commit 7d6d155

Please sign in to comment.