Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas authored Jan 26, 2025
1 parent 5281cc9 commit 3275f5f
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/manual_test_builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,13 @@ jobs:
build:
strategy:
matrix:
include: |
${{ fromJSON('[
{"host": "aarch64-Linux", "runner": "ubuntu-24.04-arm"},
{"host": "x86_64-Linux", "runner": "ubuntu-latest"}
]') }}
# Filter the matrix dynamically based on inputs.host
exclude: |
${{ inputs.host != 'ALL' && fromJSON('[
{"host": "aarch64-Linux"},
{"host": "x86_64-Linux"}
]').filter(x => x.host != inputs.host) }}
include:
- host: 'aarch64-Linux'
runner: ubuntu-24.04-arm
- host: 'x86_64-Linux'
runner: ubuntu-latest
runs-on: ${{ matrix.runner }}
if: ${{ inputs.host == 'ALL' || inputs.host == matrix.host }}
timeout-minutes: 90
permissions:
attestations: write
Expand Down

0 comments on commit 3275f5f

Please sign in to comment.