File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ jobs:
215215 echo " ghc-options: -Werror=missing-methods" >> cabal.project
216216 cat >> cabal.project <<EOF
217217 EOF
218- $HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: $_ installed\n" unless /^(strict-containers|strict-containers-lens|strict-containers-serialise|strict-containers-tests)$/; }' >> cabal.project.local
218+ $HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: $_ installed\n" unless /^(binary|containers| strict-containers|strict-containers-lens|strict-containers-serialise|strict-containers-tests|text )$/; }' >> cabal.project.local
219219 cat cabal.project
220220 cat cabal.project.local
221221 - name : dump install plan
Original file line number Diff line number Diff line change @@ -5,3 +5,8 @@ install-dependencies: False
55
66-- to allow different set of packages per GHC versions
77jobs-selection: any
8+
9+ -- we depend on containers which is a core package (comes installed with ghc)
10+ -- by default, haskell-ci forbids these from being upgraded; override that here
11+ -- also override the rdeps of containers, as per their haskell-ci config
12+ installed: +all -containers -binary -text
You can’t perform that action at this time.
0 commit comments