From 6cd3d7d4cb9d3cad1321a572751e2591341b0ab5 Mon Sep 17 00:00:00 2001 From: brandon s allbery kf8nh Date: Wed, 7 Aug 2024 23:19:43 -0400 Subject: [PATCH] use fixed cabal version per #10175 --- .github/workflows/validate.yml | 2 +- cabal-testsuite/cabal-testsuite.cabal | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a886214c01d..ca41dd59039 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -113,7 +113,7 @@ jobs: id: setup-haskell with: ghc-version: ${{ matrix.ghc }} - cabal-version: latest # latest is mandatory for cabal-testsuite, see https://github.com/haskell/cabal/issues/8133 + cabal-version: 3.12.1.0 # see #10251 ghcup-release-channel: https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.8.yaml # See the following link for a breakdown of the following step diff --git a/cabal-testsuite/cabal-testsuite.cabal b/cabal-testsuite/cabal-testsuite.cabal index 92becccd8dc..e8aae21b725 100644 --- a/cabal-testsuite/cabal-testsuite.cabal +++ b/cabal-testsuite/cabal-testsuite.cabal @@ -145,9 +145,7 @@ executable test-runtime-deps custom-setup -- we only depend on even stable releases of lib:Cabal - -- and due to Custom complexity and ConstraintSetupCabalMaxVersion - -- it has to be the latest release version plus - -- you have to use the latest cabal-install release - setup-depends: Cabal == 3.12.*, - Cabal-syntax == 3.12.*, + -- and must match the release used in validate.yml (see #10251) + setup-depends: Cabal ^>= 3.12.1, + Cabal-syntax ^>= 3.12.1, base, filepath, directory