From c7732c760041aed898d2aee11677fd01c0be7584 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 8 Jan 2026 18:23:43 -1000 Subject: [PATCH] ;workflows:binaries:linux: ensure the linux binary uses a fixed haskeline [#2410] --- .github/workflows/binaries-linux-x64.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/binaries-linux-x64.yml b/.github/workflows/binaries-linux-x64.yml index 8c11261f8..6b0ae6c29 100644 --- a/.github/workflows/binaries-linux-x64.yml +++ b/.github/workflows/binaries-linux-x64.yml @@ -98,7 +98,7 @@ jobs: - name: Build with cabal run: | - cabal build --enable-executable-static --ghc-options=-Werror hledger || (echo "ERROR: building hledger failed"; false) + cabal build --enable-executable-static --ghc-options=-Werror hledger --constraint 'haskeline>=0.8.4.1' || (echo "ERROR: building hledger failed"; false) cabal build --enable-executable-static --ghc-options=-Werror hledger-ui --constraint 'brick==2.10' || (echo "ERROR: building hledger-ui failed"; false) # temporary constraint to avoid https://github.com/jtdaugherty/brick/issues/539 cabal build --enable-executable-static --ghc-options=-Werror hledger-web || (echo "ERROR: building hledger-web failed"; false)