-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Massaging upper bounds This allows the library to build (and be depended on) without "breaking open" the build with heavy-hammers like `--allow-newer` when compiling with GHC 8.6. The test suite still does not build, due to some naughty partial pattern matches. * Remove partial pattern matches from hedgehog generators. These locations trigger errors on ghc 8.6 for missing `MonadFail` instances. Fixes #495. * Fix remaining monad pattern matches for ghc 8.6. Tested with `stack test` (all passing). Fixes #494. * [stack] Bump `sbv` pin [skip ci] * [stack] Bump resolver * Fix compile errors * [travis] Modify artefact paths * Fix Analysis pattern match checks. GHC 8.6's pattern match checker seems to have some bugs related to pattern synonyms (eg https://gitlab.haskell.org/ghc/ghc/issues/14253). We remove a few places where the `SObject` pattern synonym erroneously triggered a failure. We can also remove the `-fmax-pmcheck-iterations=5000` option. Tested via: ``` cabal clean; cabal test stack clean; stack test ``` * Remove unneeded sections from `cabal.project`
- Loading branch information
Showing
10 changed files
with
169 additions
and
141 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,6 @@ packages: | |
|
||
allow-newer: pact:all | ||
|
||
package pact | ||
ghc-options: -Wwarn -Wall -fmax-pmcheck-iterations=1000 | ||
|
||
source-repository-package | ||
type: git | ||
location: https://github.com/LeventErkok/sbv.git | ||
tag: 68375576f87d17a2da759c56f7147f4e559471a2 | ||
|
||
source-repository-package | ||
type: git | ||
location: [email protected]:kadena-io/thyme.git | ||
|
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
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,22 @@ | ||
# stack yaml for ghc builds | ||
|
||
resolver: lts-12.9 | ||
resolver: lts-13.22 | ||
|
||
packages: | ||
- '.' | ||
|
||
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.