From 080c49a4c9c53d7bff115a1a32936f5f9835f2c5 Mon Sep 17 00:00:00 2001 From: Dmitrii Kovanikov Date: Thu, 19 Mar 2020 16:25:33 +0000 Subject: [PATCH] [#5] Support GHC-8.6.5 and GHC-8.4.4 (#7) Resolves #5 --- .github/workflows/ci.yml | 2 ++ .travis.yml | 4 +++- autopack.cabal | 8 +++++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95452d7..1336a86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: matrix: cabal: ["2.4"] ghc: + - "8.4.4" + - "8.6.5" - "8.8.3" steps: diff --git a/.travis.yml b/.travis.yml index 421fb06..a08e6a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,10 @@ cache: matrix: include: + - ghc: 8.4.4 + - ghc: 8.6.5 - ghc: 8.8.3 - + - ghc: 8.8.3 env: STACK_YAML="$TRAVIS_BUILD_DIR/stack.yaml" diff --git a/autopack.cabal b/autopack.cabal index 6563633..3e6ebc7 100644 --- a/autopack.cabal +++ b/autopack.cabal @@ -14,14 +14,16 @@ category: CustomSetup, Setup, Cabal, Distribution, Development build-type: Simple extra-doc-files: README.md CHANGELOG.md -tested-with: GHC == 8.8.3 +tested-with: GHC == 8.4.4 + GHC == 8.6.5 + GHC == 8.8.3 source-repository head type: git location: https://github.com/kowainik/autopack.git common common-options - build-depends: base ^>= 4.13.0.0 + build-depends: base >= 4.11.0.0 && < 4.14 ghc-options: -Wall -Wcompat @@ -56,6 +58,6 @@ library import: common-options hs-source-dirs: src exposed-modules: Autopack - build-depends: Cabal ^>= 3.0 + build-depends: Cabal >= 2.2 && < 3.2 , dir-traverse ^>= 0.2 , filepath ^>= 1.4