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 7d6d155 commit 2f9fb88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/manual_test_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,12 @@ jobs:
##presets
set +x ; set +e
#-------------#
if [[ "${{ matrix.runner }}" == "ubuntu-24.04-arm" ]]; then
set -x
if [[ "$(uname -m | tr -d '[:space:]')" == "aarch64" ]]; then
if [[ "${{ github.event.inputs.host }}" != "ALL" ]] && [[ "${{ github.event.inputs.host }}" != "aarch64-Linux" ]]; then
exit 0
fi
elif [[ "${{ matrix.runner }}" == "ubuntu-latest" ]]; then
elif [[ "$(uname -m | tr -d '[:space:]')" == "x86_64" ]]; then
if [[ "${{ github.event.inputs.host }}" != "ALL" ]] && [[ "${{ github.event.inputs.host }}" != "x86_64-Linux" ]]; then
exit 0
fi
Expand Down

0 comments on commit 2f9fb88

Please sign in to comment.