-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
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
Enable Travis CI #16
Enable Travis CI #16
Conversation
* Drop support for GHC 6.12.3 and 7.4.1 * Add support for GHC 8.0.2
GHC.RTS.EventsIncremental uses Data.IntMap.Strict which requires containers >= 0.5.
Splendid! LGTM. |
I think it's better to disable write-merge for now because otherwise we have to check every travis build log to confirm nothing is actually broken. |
5a48fd3
to
b535a3f
Compare
Travis now skips write-merge: https://travis-ci.org/maoe/ghc-events/builds/200771369 |
Reworded the last commit message. s/is/are/ |
import System.IO (IOMode(ReadMode), openBinaryFile) | ||
import System.Exit (die) | ||
import System.IO | ||
import System.Exit |
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.
Why did you change these to non-selective imports? I see the case for System.Exit
but not sure about System.IO
.
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.
I removed the import list for System.IO.stderr
, which is also used in die
.
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.
Oh, I missed that - fair enough.
Only posted an insignificant question on one of the changes. Looks good! @Mikolaj: shall I merge it or do we want someone else's opinion as well? |
IMHO, if @simonmar doesn't object, let's merge. Great job, BTW. |
Right, pending on his call then. |
Any objections? |
I think you can safely assume there are none. :) |
Okay, could we merge then? |
O, you didn't have repo write access. My bad, I can actually add you. Done. |
Great, thank you! I'm going to merge this then. |
@Mikolaj Could you please enable Travis builds? I see ghc-events on https://travis-ci.org/profile/haskell but it's grayed out so I cannot enable it. |
Right. Supposedly it should work now. |
Thanks! |
You are welcome. |
This PR enables Travis CI with various GHC versions including the latest one.