Skip to content

Commit

Permalink
Enable Travis build with GHC 8.2.2 (#23)
Browse files Browse the repository at this point in the history
* Enable GHC 8.2.2
* Drop GHC 7.8.4 support due to hopfli failing on base < 4.8
  • Loading branch information
srhb committed Feb 24, 2018
1 parent 8aa56bd commit 046e5cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ before_cache:

matrix:
include:
- compiler: "ghc-7.8.4"
env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-7.8.4], sources: [hvr-ghc]}}
- compiler: "ghc-7.10.2"
env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-7.10.2], sources: [hvr-ghc]}}
- compiler: "ghc-8.0.2"
env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.0.2], sources: [hvr-ghc]}}
- compiler: "ghc-8.2.2"
env: TEST=--disable-tests BENCH=--disable-benchmarks
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.2.2], sources: [hvr-ghc]}}

before_install:
- HC=${CC}
Expand Down
4 changes: 2 additions & 2 deletions webify.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainer: Sarah Brofeldt <sbrofeldt@gmail.com>
copyright: (c) 2013 Anantha Kumaran
category: Web
build-type: Simple
tested-with: GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2
tested-with: GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2
cabal-version: >=1.8

Flag debug
Expand All @@ -26,7 +26,7 @@ executable webify
if flag(debug)
ghc-prof-options: -prof, -fprof-auto

build-depends: base >=4.6 && <5,
build-depends: base >=4.8 && <5,
containers >= 0.4.2.1,
bytestring >= 0.9,
blaze-builder >= 0.3.3.4,
Expand Down

0 comments on commit 046e5cc

Please sign in to comment.