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

CI build for ghc-8.6.1 #27

Merged
merged 1 commit into from Oct 6, 2018
Merged
Changes from all commits
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
10 changes: 9 additions & 1 deletion .circleci/config.yml
Expand Up @@ -135,13 +135,20 @@ cabalbuild: &cabalbuild
name: Running tests
command: |
if grep '^test-suite' *.cabal > /dev/null; then
cabal new-test --project-file="cabal.project" -j${CABAL_THREADS:-4} all
cabal new-test --enable-tests --project-file="cabal.project" -j${CABAL_THREADS:-4} all
else
echo Not tests to run
fi

version: 2.0
jobs:
ghc-8.6.1:
environment:
- GHC: "ghc8.6.1"
docker:
- image: quay.io/haskell_works/ghc-8.6.1
<<: *cabalbuild

ghc-8.4.3:
environment:
- GHC: "ghc8.4.3"
Expand Down Expand Up @@ -229,6 +236,7 @@ workflows:
version: 2
multiple-ghcs:
jobs:
- ghc-8.6.1
- ghc-8.4.3
- ghc-8.2.2
- lts-12
Expand Down