Skip to content

Commit 01bba92

Browse files
committed
haskell-ci: Allow re-installing text
1 parent 26c22ab commit 01bba92

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
if [ $((HCNUMVER >= 90000)) -ne 0 ] ; then echo " ghc-options: -Werror=incomplete-patterns -Werror=incomplete-uni-patterns" >> cabal.project ; fi
198198
cat >> cabal.project <<EOF
199199
EOF
200-
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(binary|containers|unordered-containers)$/; }' >> cabal.project.local
200+
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(binary|containers|text|unordered-containers)$/; }' >> cabal.project.local
201201
cat cabal.project
202202
cat cabal.project.local
203203
- name: dump install plan

cabal.haskell-ci

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ constraint-set debug
99

1010
installed: -containers
1111
installed: -binary
12+
installed: -text
1213

1314
-- With GHC < 9, haddock fails due to a parse error in the benchmarks.
1415
-- https://github.com/haskell-CI/haskell-ci/issues/605

0 commit comments

Comments
 (0)