ci: Remove matrix configuration for Build-Cabal-Arm job

This avoids the "${{ matrix.ghc }}" display when the job is skipped in PR workflows.
This commit is contained in:
Wolfgang Walther
2024-02-10 20:16:22 +01:00
parent f17f23bd9f
commit 073320133d
+2 -6
View File
@@ -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