Add stack configuration for GHC 8.6
parent
6c187da8f8
commit
ffc1e6918c
|
@ -95,6 +95,9 @@ matrix:
|
||||||
- env: BUILD=stack ARGS="--stack-yaml stack-8.2.2.yaml"
|
- env: BUILD=stack ARGS="--stack-yaml stack-8.2.2.yaml"
|
||||||
compiler: ": #stack 8.2.2"
|
compiler: ": #stack 8.2.2"
|
||||||
addons: {apt: {packages: [libgmp-dev]}}
|
addons: {apt: {packages: [libgmp-dev]}}
|
||||||
|
- env: BUILD=stack ARGS="--stack-yaml stack-8.6.5.yaml"
|
||||||
|
compiler: ": #stack 8.6.5"
|
||||||
|
addons: {apt: {packages: [libgmp-dev]}}
|
||||||
|
|
||||||
# Nightly builds are allowed to fail
|
# Nightly builds are allowed to fail
|
||||||
- env: BUILD=stack ARGS="--resolver nightly"
|
- env: BUILD=stack ARGS="--resolver nightly"
|
||||||
|
|
|
@ -86,7 +86,7 @@ library {
|
||||||
{ base >=4.9 && <4.13
|
{ base >=4.9 && <4.13
|
||||||
, ghc >=8.0.1 && <8.7
|
, ghc >=8.0.1 && <8.7
|
||||||
, ghc-paths >=0.1.0.9 && <0.2
|
, ghc-paths >=0.1.0.9 && <0.2
|
||||||
, ghc-exactprint >=0.5.8 && <0.5.9
|
, ghc-exactprint >=0.5.8 && <0.7
|
||||||
, transformers >=0.5.2.0 && <0.6
|
, transformers >=0.5.2.0 && <0.6
|
||||||
, containers >=0.5.7.1 && <0.7
|
, containers >=0.5.7.1 && <0.7
|
||||||
, mtl >=2.2.1 && <2.3
|
, mtl >=2.2.1 && <2.3
|
||||||
|
@ -99,12 +99,12 @@ library {
|
||||||
, bytestring >=0.10.8.1 && <0.11
|
, bytestring >=0.10.8.1 && <0.11
|
||||||
, directory >=1.2.6.2 && <1.4
|
, directory >=1.2.6.2 && <1.4
|
||||||
, butcher >=1.3.1 && <1.4
|
, butcher >=1.3.1 && <1.4
|
||||||
, yaml >=0.8.18 && <0.9
|
, yaml >=0.8.18 && <0.12
|
||||||
, aeson >=1.0.1.0 && <1.5
|
, aeson >=1.0.1.0 && <1.5
|
||||||
, extra >=1.4.10 && <1.7
|
, extra >=1.4.10 && <1.7
|
||||||
, uniplate >=1.6.12 && <1.7
|
, uniplate >=1.6.12 && <1.7
|
||||||
, strict >=0.3.2 && <0.4
|
, strict >=0.3.2 && <0.4
|
||||||
, monad-memo >=0.4.1 && <0.5
|
, monad-memo >=0.4.1 && <0.6
|
||||||
, unsafe >=0.0 && <0.1
|
, unsafe >=0.0 && <0.1
|
||||||
, safe >=0.3.9 && <0.4
|
, safe >=0.3.9 && <0.4
|
||||||
, deepseq >=1.4.2.0 && <1.5
|
, deepseq >=1.4.2.0 && <1.5
|
||||||
|
@ -242,7 +242,7 @@ test-suite unittests
|
||||||
, cmdargs
|
, cmdargs
|
||||||
, czipwith
|
, czipwith
|
||||||
, ghc-boot-th
|
, ghc-boot-th
|
||||||
, hspec >=2.4.1 && <2.6
|
, hspec >=2.4.1 && <2.7
|
||||||
}
|
}
|
||||||
main-is: TestMain.hs
|
main-is: TestMain.hs
|
||||||
other-modules: TestUtils
|
other-modules: TestUtils
|
||||||
|
@ -314,7 +314,7 @@ test-suite littests
|
||||||
, cmdargs
|
, cmdargs
|
||||||
, czipwith
|
, czipwith
|
||||||
, ghc-boot-th
|
, ghc-boot-th
|
||||||
, hspec >=2.4.1 && <2.6
|
, hspec >=2.4.1 && <2.7
|
||||||
, filepath
|
, filepath
|
||||||
, parsec >=3.1.11 && <3.2
|
, parsec >=3.1.11 && <3.2
|
||||||
}
|
}
|
||||||
|
@ -358,7 +358,7 @@ test-suite libinterfacetests
|
||||||
, base
|
, base
|
||||||
, text
|
, text
|
||||||
, transformers
|
, transformers
|
||||||
, hspec >=2.4.1 && <2.6
|
, hspec >=2.4.1 && <2.7
|
||||||
}
|
}
|
||||||
main-is: Main.hs
|
main-is: Main.hs
|
||||||
other-modules:
|
other-modules:
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
resolver: lts-13.23
|
||||||
|
|
||||||
|
extra-deps:
|
||||||
|
- butcher-1.3.2.1
|
||||||
|
- multistate-0.8.0.1
|
Loading…
Reference in New Issue