From 073320133d2cc60e15f625fda747dc5a1f3ee652 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 7 Feb 2024 14:28:35 +0100 Subject: [PATCH] ci: Remove matrix configuration for Build-Cabal-Arm job This avoids the "${{ matrix.ghc }}" display when the job is skipped in PR workflows. --- .github/workflows/ci.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c4b46b17f..914612f08 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -291,18 +291,14 @@ jobs: run: cabal build --enable-tests --enable-benchmarks all Build-Cabal-Arm: - strategy: - matrix: - ghc: ['9.4.8'] - fail-fast: false - name: Build aarch64 (Cabal, GHC ${{ matrix.ghc }}) + name: Build aarch64 (Cabal, GHC 9.4.8) if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/rel-') }} runs-on: ubuntu-latest outputs: remotepath: ${{ steps.Remote-Dir.outputs.remotepath }} env: GITHUB_COMMIT: ${{ github.sha }} - GHC_VERSION: ${{ matrix.ghc }} + GHC_VERSION: '9.4.8' steps: - uses: actions/checkout@v4 - id: Remote-Dir