From 0f1336389576d385bf50d05a960d9619a6c6d19a Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Wed, 3 Sep 2025 08:22:47 -0700 Subject: [PATCH] runs-on matrix --- .github/workflows/central-controller.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/central-controller.yaml b/.github/workflows/central-controller.yaml index 4908e7113..50dcc6eb7 100644 --- a/.github/workflows/central-controller.yaml +++ b/.github/workflows/central-controller.yaml @@ -7,7 +7,10 @@ on: jobs: central_controller: name: Central Controller Build - runs-on: [gha-runner-x64, gha-runner-arm64] + strategy: + matrix: + runner: [gha-runner-x64, gha-runner-arm64] + runs-on: ${{ matrix.runner }} steps: - name: checkout uses: actions/checkout@v4