Skip to content

Commit

Permalink
Fix CI: specify cabal 3.10 (#474)
Browse files Browse the repository at this point in the history
Summary:
3.12 has a bug that we seem to be running into, see haskell/cabal#10046

Pull Request resolved: #474

Reviewed By: donsbot

Differential Revision: D67113509

Pulled By: simonmar

fbshipit-source-id: 29c7de65611703677ee3b93ad38841ec79faa019
  • Loading branch information
simonmar authored and facebook-github-bot committed Dec 12, 2024
1 parent bfef488 commit fc9b418
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ jobs:
run: |
curl --proto '=https' --tlsv1.2 -sSf "https://downloads.haskell.org/~ghcup/x86_64-linux-ghcup" -o "$LOCAL_BIN"/ghcup
chmod +x "$LOCAL_BIN"/ghcup
ghcup install cabal --set
# Avoiding 3.12 due to https://github.com/haskell/cabal/issues/10046
ghcup install cabal 3.10 --set
apt-get install -y build-essential libgmp-dev libnuma-dev
ghcup install ghc ${{ matrix.ghc }} --set
echo "$HOME/.ghcup/bin" >> "$GITHUB_PATH"
Expand Down

0 comments on commit fc9b418

Please sign in to comment.