From 061810a1216c6f5a23636090f4a72d122e03fb9e Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Thu, 13 Mar 2025 10:26:04 +0100 Subject: [PATCH] Add arm build to 'linux debug parallel' workflow. --- .github/workflows/linux.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f2077f0bfb..b0b0c46928 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -91,8 +91,8 @@ jobs: linux-debug-parallel: # simple parallel debug build using g++ - name: ${{ matrix.ubuntu_version }} debug parallel - runs-on: ubuntu-24.04 + name: ${{ matrix.ubuntu_version }} ${{ matrix.architecture }} debug parallel + runs-on: ${{ matrix.os }} # # The following condition only runs the workflow on 'push' or if the @@ -106,6 +106,12 @@ jobs: fail-fast: false matrix: ubuntu_version: [jammy, noble] + os: [ubuntu-24.04, ubuntu-24.04-arm] + include: + - os: ubuntu-24.04 + architecture: amd64 + - os: ubuntu-24.04-arm + architecture: arm64 container: image: dealii/dependencies:${{ matrix.ubuntu_version }} -- 2.39.5