We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recently cabal started to basically do a haddock build after new-repl. Is it intentional (or my setup is broken)? It's definitely surprising.
This is what I mean:
$ cat cabal.project packages: . package foo documentation: True $ cabal new-repl lib:foo -- new-repl ⟨…⟩ Ok, six modules loaded. Collecting type info for 6 module(s) ... -- ghci repl → :quit -- exit from ghci Leaving GHCi. Preprocessing library ⟨…⟩ -- starting haddock build!!! Running Haddock on library ⟨…⟩ ⟨…⟩
The text was updated successfully, but these errors were encountered:
Likely because repl and build share the same code path. Agreed that repl shouldn't do this. Is this with 2.2 or only with master?
repl
build
2.2
master
Sorry, something went wrong.
This might be the result of the recent c094940. Maybe we should disable haddock'ing for repl builds.
@23Skidoo master. But I tried 2.2, the same result.
@alexbiehl new-test too likely. It shouldn't fail because of haddock error, … or is it? Not sure.
I verified that I can reproduce this with 2.2, and that I can't reproduce now on master. Presumably #5226 has fixed it, so closing.
No branches or pull requests
Recently cabal started to basically do a haddock build after new-repl.
Is it intentional (or my setup is broken)? It's definitely surprising.
This is what I mean:
The text was updated successfully, but these errors were encountered: