File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2222
2323cabal install --dependencies-only --enable-tests " ${flags[@]} " ||
2424 cabal install --dependencies-only " ${flags[@]} " ||
25- die " can't install dependencies"
25+ cabal install --dependencies-only --max-backjumps -1 " ${flags[@]} " ||
26+ die " can't install dependencies"
2627cabal configure --enable-tests " ${flags[@]} " ||
2728 die " configure failed"
2829cabal build ||
Original file line number Diff line number Diff line change @@ -67,7 +67,10 @@ fedora:latest dnf install -y cabal-install ghc-template-haskell-devel fi
6767archlinux:latest pacman -S -y --noconfirm cabal-install ghc-static base-devel
6868
6969# Ubuntu LTS
70+ ubuntu:22.04 apt-get update && apt-get install -y cabal-install
7071ubuntu:20.04 apt-get update && apt-get install -y cabal-install
72+ ubuntu:18.04 apt-get update && apt-get install -y cabal-install
73+ ubuntu:16.04 apt-get update && apt-get install -y cabal-install
7174
7275# Stack on Ubuntu LTS
7376ubuntu:20.04 set -e; apt-get update && apt-get install -y curl && curl -sSL https://get.haskellstack.org/ | sh -s - -f && cd /mnt && exec test/stacktest
You can’t perform that action at this time.
0 commit comments