Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#39] Build with GHC 8.2.2 and GHC 8.6.1 on CI #52

Merged
merged 4 commits into from Oct 4, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 22 additions & 1 deletion .travis.yml
Expand Up @@ -14,6 +14,17 @@ cache:
matrix:
include:

- ghc: 8.2.2
env: GHCVER='8.2.2' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.2.2
- cabal-install-head

- ghc: 8.4.3
env: GHCVER='8.4.3' CABALVER='head'
os: linux
Expand All @@ -25,6 +36,17 @@ matrix:
- ghc-8.4.3
- cabal-install-head

- ghc: 8.6.1
env: GHCVER='8.6.1' CABALVER='head'
os: linux
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.6.1
- cabal-install-head

- ghc: 8.4.3
env: GHCVER='8.4.3' STACK_YAML="$TRAVIS_BUILD_DIR/stack.yaml"
os: linux
Expand All @@ -33,7 +55,6 @@ matrix:
packages:
- libgmp-dev


install:
- |
if [ -z "$STACK_YAML" ]; then
Expand Down
4 changes: 3 additions & 1 deletion co-log-core/co-log-core.cabal
Expand Up @@ -13,7 +13,9 @@ category: Logging
build-type: Simple
extra-doc-files: CHANGELOG.md
cabal-version: 2.0
tested-with: GHC == 8.4.3
tested-with: GHC == 8.2.2
, GHC == 8.4.3
, GHC == 8.6.1

source-repository head
type: git
Expand Down
4 changes: 3 additions & 1 deletion co-log/co-log.cabal
Expand Up @@ -13,7 +13,9 @@ copyright: 2018 Kowainik
category: Logging
build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with: GHC == 8.4.3
tested-with: GHC == 8.2.2
, GHC == 8.4.3
, GHC == 8.6.1

source-repository head
type: git
Expand Down