-
Notifications
You must be signed in to change notification settings - Fork 206
Conversation
There are two reasons for this: 1. It causes our travis builds to run out of memory. 2. ide-backend doesn’t really provide anything which we don’t already have and it doesn’t fit in very well (e.g. it can’t reuse ghc sessions).
7e37eb0
to
60234a3
Compare
.PHONY: test-haskell | ||
test-haskell: | ||
# stack build --test --pedantic | ||
# stack complains about deprecations in ghc-mod as an extra dep | ||
# build with -Werror enabled but run the tests without it because ide-backend picks it up | ||
stack build --test | ||
stack build --test --flag haskell-ide-engine:pedantic \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks encouraging
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should call pedantic.sh here instead, so the flags only get set in one place
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You’re right, but it requires some bash to not pass +RTS -N1 -RTS
here. I’ll look the syntax for that up tomorrow and change it.
Seems reasonable to me. My plan for the ide-backend based information was to have it be independent of the ide-backend package itself (just based on the code). This code is still interesting to reference, thanks for writing it! |
@mgsloan I’m fine with moving some code over, in the case of type info I am not sure it’s very useful to have a type info plugin based on ide-backend and one on ghc-mod, but if there are useful differences, I’m happy to include something like that. It would be great if you could make a list of the things you’d like to have from ide-backend, then we can see how we provide them in a nice way. |
There are two reasons for this:
have and it doesn’t fit in very well (e.g. it can’t reuse ghc sessions).