-
Notifications
You must be signed in to change notification settings - Fork 27
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
Upgrade to Stackage LTS Haskell 10.7 #240
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dahlia
added
typ:bug
Type: Bug/defect
cat:dist
Category: Distribution and deployment (e.g., CI)
labels
Mar 1, 2018
Checklist 🤔
|
I will review this PR at weekend. |
dahlia
force-pushed
the
stack-lts-10.7
branch
2 times, most recently
from
March 2, 2018 18:31
345f22b
to
cb736ee
Compare
dahlia
force-pushed
the
stack-lts-10.7
branch
2 times, most recently
from
March 2, 2018 22:09
11ca711
to
2c30256
Compare
> Error: While constructing the build plan, the following exceptions were encountered: > In the dependencies for turtle-1.4.5: > Win32-2.5.4.1 from stack configuration does not match >=2.2.0.1 && <2.4 (latest matching version > is 2.3.1.1) > needed due to nirum-0.3.0 -> turtle-1.4.5 > Some potential ways to resolve this: > * Recommended action: try adding the following to your extra-deps > in C:\projects\nirum-k5n5y\stack.yaml: > - Win32-2.3.1.1 > * Set 'allow-newer: true' to ignore all version constraints and build anyway. > * You may also want to try using the 'stack solver' command. > Plan construction failed. [changelog skip]
@admire93 All builds are now passed. Could you review this? |
kanghyojun
approved these changes
Mar 3, 2018
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.
LGTM
# - ignore: {name: Use let} | ||
# - ignore: {name: Use const, within: SpecialModule} # Only within certain modules | ||
- ignore: | ||
name: Reduce duplication |
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.
🤩
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is a retrial of PR #214, which ended up unsuccessful. Since the patch became more complicated in the end than I'd expected, here some points I give you:
-optP-Wno-nonportable-include-path
option toghc-options
on macOS to work around Cabal's this bug: Filename case on macOS haskell/cabal#4739. See also a comment I left in package.yaml.-Wall
flags toghc-options
for manylibrary
/executables
/tests
entries to give an-Wno-missing-signatures
option toghc-options
forspec
test (it's an entry for unit tests). The global-Wall
flag seems to override all entry-local-Wno-*
flags.-Wno-missing-signatures
is basically only for thespec
test entry.-fhide-source-paths
option so I applied it to stack.yaml.