diff options
-rw-r--r-- | .travis.yml | 10 | ||||
-rw-r--r-- | deb/stack.yaml | 6 | ||||
-rw-r--r-- | macos/stack.yaml | 11 | ||||
-rw-r--r-- | stack.yaml | 8 | ||||
-rw-r--r-- | windows/stack.yaml | 8 |
5 files changed, 12 insertions, 31 deletions
diff --git a/.travis.yml b/.travis.yml index 1e7ee92ae..e5d5006dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,17 +54,17 @@ matrix: # The Stack builds. We can pass in arbitrary Stack arguments via the ARGS # variable, such as using --stack-yaml to point to a different file. - - env: BUILD=stack ARGS="--resolver lts-7" - compiler: ": #stack 8.0.1" - addons: {apt: {packages: [ghc-8.0.1], sources: [hvr-ghc]}} + - env: BUILD=stack ARGS="--resolver lts-8" + compiler: ": #stack 8.0.2" + addons: {apt: {packages: [ghc-8.0.2], sources: [hvr-ghc]}} # Nightly builds are allowed to fail - env: BUILD=stack ARGS="--resolver nightly" compiler: ": #stack nightly" addons: {apt: {packages: [libgmp-dev]}} - - env: BUILD=stack ARGS="--resolver lts-7" - compiler: ": #stack 8.0.1 osx" + - env: BUILD=stack ARGS="--resolver lts-8" + compiler: ": #stack 8.0.2 osx" os: osx # - env: BUILD=stack ARGS="--resolver nightly" diff --git a/deb/stack.yaml b/deb/stack.yaml index 3f34be81b..d0e84a147 100644 --- a/deb/stack.yaml +++ b/deb/stack.yaml @@ -18,8 +18,4 @@ packages: commit: c53a27513318f1d23303ee27e46da9e7702c798e extra-dep: true extra-deps: -- texmath-0.9 -- doctemplates-0.1.0.2 -- pandoc-types-1.17.0.4 -- skylighting-0.1.1.4 -resolver: lts-7.14 +resolver: lts-8.0 diff --git a/macos/stack.yaml b/macos/stack.yaml index aeaa2b10c..4cd629f2d 100644 --- a/macos/stack.yaml +++ b/macos/stack.yaml @@ -11,18 +11,11 @@ flags: unicode_collation: false test_citeproc: false debug: false -# ghc-options: -# pandoc-citeproc: '-pgmP cpphs -optP--cpp' -# highlighting-kate: '-pgmP cpphs -optP--cpp' packages: - '..' - location: git: https://github.com/jgm/pandoc-citeproc.git commit: c53a27513318f1d23303ee27e46da9e7702c798e extra-dep: true -extra-deps: -- texmath-0.9 -- doctemplates-0.1.0.2 -- pandoc-types-1.17.0.4 -- skylighting-0.1.1.4 -resolver: lts-7.14 +extra-deps: [] +resolver: lts-8.0 diff --git a/stack.yaml b/stack.yaml index df056ade8..99f9a7899 100644 --- a/stack.yaml +++ b/stack.yaml @@ -7,9 +7,5 @@ flags: network-uri: true packages: - '.' -extra-deps: -- doctemplates-0.1.0.2 -- pandoc-types-1.17.0.4 -- skylighting-0.1.1.4 -- texmath-0.9 -resolver: lts-7.14 +extra-deps: [] +resolver: lts-8.0 diff --git a/windows/stack.yaml b/windows/stack.yaml index 3f34be81b..4cd629f2d 100644 --- a/windows/stack.yaml +++ b/windows/stack.yaml @@ -17,9 +17,5 @@ packages: git: https://github.com/jgm/pandoc-citeproc.git commit: c53a27513318f1d23303ee27e46da9e7702c798e extra-dep: true -extra-deps: -- texmath-0.9 -- doctemplates-0.1.0.2 -- pandoc-types-1.17.0.4 -- skylighting-0.1.1.4 -resolver: lts-7.14 +extra-deps: [] +resolver: lts-8.0 |