Skip to content
Snippets Groups Projects
Commit 0148980d authored by Oleg Grenrus's avatar Oleg Grenrus
Browse files

haddock broken with GHC-7.6

parent adaaae1d
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,12 @@ if [ "x$CABAL_INSTALL_ONLY" != "xYES" ] ; then
# Run haddock.
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
# TODO: use new-haddock?
(cd Cabal && timed cabal act-as-setup --build-type=Simple -- haddock --builddir=${CABAL_BDIR}) || exit $?
# haddock: internal error: synifyKind
# https://github.com/haskell/haddock/issues/242
if [ "$GHCVER" != "7.6.3" ]; then
(cd Cabal && timed cabal act-as-setup --build-type=Simple -- haddock --builddir=${CABAL_BDIR}) || exit $?
fi
fi
# Check for package warnings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment