Skip to content

Commit c945243

Browse files
committed
FIX haddock recompiling all the things
See haskell/cabal#8707
1 parent b0a28b8 commit c945243

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-haddock.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
cabal haddock --haddock-tests all
4+
# without --disable-documentation haddock will recompile all the things
5+
# See https://github.com/haskell/cabal/issues/8707
6+
cabal haddock --disable-documentation --haddock-tests all
57

68
[ ! -d docs/static/haddock ] && mkdir -p docs/static/haddock
79

0 commit comments

Comments
 (0)