diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-07-13 21:43:24 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-07-13 21:43:24 +0200 |
commit | 62915a8af148e80c607985b078aa2c74645332ba (patch) | |
tree | 7d247684b12680444a98f3d74420566b02b5ad51 | |
parent | 911b63dfc371541700ea16708dc66725b02393f1 (diff) | |
download | pandoc-62915a8af148e80c607985b078aa2c74645332ba.tar.gz |
Added a travis build on ghc 8.2 release candidate.
-rw-r--r-- | .travis.yml | 4 | ||||
-rw-r--r-- | stack.yaml.ghc82 | 43 |
2 files changed, 47 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1b9b9a095..61eede4c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,6 +60,10 @@ matrix: compiler: ": #stack nightly" addons: {apt: {packages: [libgmp-dev]}} + - env: BUILD=stack ARGS="--stack-yaml stack.yaml.ghc82" + compiler: ": #stack 8.2.x" + addons: {apt: {packages: [libgmp-dev]}} + # - env: BUILD=stack ARGS="--resolver lts-8" # compiler: ": #stack 8.0.2 osx" # os: osx diff --git a/stack.yaml.ghc82 b/stack.yaml.ghc82 new file mode 100644 index 000000000..5187c4496 --- /dev/null +++ b/stack.yaml.ghc82 @@ -0,0 +1,43 @@ +# https://mail.haskell.org/pipermail/ghc-devs/2017-July/014364.html +# https://downloads.haskell.org/~ghc/8.2.1-rc3/ +# http://taylor.fausak.me/2017/05/17/testing-ghc-release-candidates-with-stack/ +compiler: ghc-8.2.0.20170704 +compiler-check: match-exact + +resolver: ghc-8.2.0.20170704 + +setup-info: + ghc: + + linux64: + 8.2.0.20170704: + url: https://downloads.haskell.org/~ghc/8.2.1-rc3/ghc-8.2.0.20170704-x86_64-deb8-linux.tar.xz + content-length: 138482820 + sha1: ac1598c21ea2936b091885a29a0f5725668aaed5 + + macosx: + 8.2.0.20170704: + url: https://downloads.haskell.org/~ghc/8.2.1-rc3/ghc-8.2.0.20170704-x86_64-apple-darwin.tar.xz + content-length: 125197252 + sha1: 81e3093b559b9aaf8af2a89f182539849539cbe1 + + windows64: + 8.2.0.20170704: + url: https://downloads.haskell.org/~ghc/8.2.1-rc3/ghc-8.2.0.20170704-x86_64-unknown-mingw32.tar.xz + content-length: 175463160 + sha1: 3648302c66769d4aa0c3a9f82be4538f402f234f + +flags: + pandoc: + trypandoc: false + embed_data_files: false + old-locale: false + network-uri: true + +packages: +- '.' + +extra-deps: +- hslua-0.5.0 +- skylighting-0.3.3 +- texmath-0.9.4.1 |