-
Notifications
You must be signed in to change notification settings - Fork 106
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
Massaging Upper Bounds #494
Merged
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
9f07b62
Massaging upper bounds
fosskers e9ec39f
Remove partial pattern matches from hedgehog generators.
joelburget 27c4cc7
Fix remaining monad pattern matches for ghc 8.6.
joelburget 3a8934f
[stack] Bump `sbv` pin [skip ci]
fosskers cef5d9c
[stack] Bump resolver
fosskers baa5fe1
Fix compile errors
fosskers 1852358
[travis] Modify artefact paths
fosskers a55b2ca
Fix Analysis pattern match checks.
joelburget cbcb26c
Remove unneeded sections from `cabal.project`
fosskers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,29 @@ | ||
# stack yaml for ghc builds | ||
|
||
resolver: lts-12.9 | ||
resolver: lts-13.22 | ||
|
||
packages: | ||
- '.' | ||
|
||
# GHC 8.6 has a more aggressive Pattern Match exhaustion checker. A number of | ||
# Pact's `Analysis` modules cause seeming infinite loops in the compiler during | ||
# this analysis, so here we limit the depth to 5000, then override `-Werror` | ||
# with `-Wwarn` to avoid failing the build. | ||
ghc-options: | ||
pact: -fmax-pmcheck-iterations=5000 -Wwarn | ||
|
||
extra-deps: | ||
- aeson-1.4.2.0 | ||
- algebraic-graphs-0.2 | ||
- crackNum-2.3 | ||
- FloatingHex-0.4 | ||
- compactable-0.1.2.2 | ||
- ed25519-donna-0.1.1 | ||
- hw-hspec-hedgehog-0.1.0.5 | ||
# --- Missing from Stackage --- # | ||
- ed25519-donna-0.1.1@sha256:344c0bb83603ed896012f441e54b380314dc4910320577cd18a9071e34f24fe9,2358 | ||
- prettyprinter-convert-ansi-wl-pprint-1.1@sha256:ae908ee44422c38a696858f04928d4b2448df656c09e6b5f5b1be05d99669fb0,3022 | ||
|
||
# --- Forced Downgrades --- # | ||
- megaparsec-6.5.0 | ||
- neat-interpolation-0.3.2.2 # Due to megaparsec 7 | ||
|
||
# --- Forced Upgrades --- # | ||
- sbv-8.2 | ||
|
||
# --- Custom Pins --- # | ||
- git: https://github.com/kadena-io/thyme.git | ||
commit: 6ee9fcb026ebdb49b810802a981d166680d867c9 | ||
- sbv-8.1 |
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
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
Oops, something went wrong.
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.
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.
These paths would change with the bump to
lts-13.*
. Does another tool / integration expect these paths to have an exact shape (say2.2
vs2.4
), say for deployment? I wouldn't want to break anything here.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 windows? Trying to find out where our windows life is at currently elsewhere too. @vaibhavsagar ?