Skip to content

Commit

Permalink
Add matrix generation and workflow usage
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronBeneteau committed Dec 2, 2024
1 parent ebe8795 commit 3ca5b23
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-self-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ jobs:
run: |
python3 scripts/actions/generate_matrix.py firmware/projects
echo "matrix=$(cat matrix.json)" >> $GITHUB_OUTPUT
test-self-hosted-build:
runs-on: self-hosted
needs: test-self-hosted-setup
strategy:
matrix: ${{fromJson(needs.test-self-hosted-setup.outputs.matrix)}}
matrix:
include: ${{ fromJson(needs.test-self-hosted-setup.outputs.matrix) }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 3ca5b23

Please sign in to comment.