From df344662bbb5ec8c428d692fb47e39221fbb9e7c Mon Sep 17 00:00:00 2001 From: Dennis Ameling Date: Fri, 21 Feb 2025 12:09:52 +0100 Subject: [PATCH] tools: run Linux tests on GitHub arm64 runners as well --- .github/workflows/test-linux.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml index 1d3827ed202347..26e6462fdd00c7 100644 --- a/.github/workflows/test-linux.yml +++ b/.github/workflows/test-linux.yml @@ -35,7 +35,11 @@ permissions: jobs: test-linux: if: github.event.pull_request.draft == false - runs-on: ubuntu-24.04 + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-24.04, ubuntu-24.04-arm] steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: