From 3ca5b2375463a9ead4c364d512ab86b8f0474189 Mon Sep 17 00:00:00 2001 From: Cameron Beneteau Date: Mon, 2 Dec 2024 00:34:02 -0500 Subject: [PATCH] Add matrix generation and workflow usage --- .github/workflows/test-self-hosted.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-self-hosted.yml b/.github/workflows/test-self-hosted.yml index ecff29427..35ed239f3 100644 --- a/.github/workflows/test-self-hosted.yml +++ b/.github/workflows/test-self-hosted.yml @@ -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