shellmet/.travis.yml
Veronika Romashkina c34da13930 [#6] Upgrade to GHC-8.6.5 (#7)
Resolves #6
2019-05-18 00:32:51 +10:00

47 lines
897 B
YAML

sudo: true
language: haskell
git:
depth: 5
cabal: "2.4"
cache:
directories:
- "$HOME/.cabal/store"
- "$HOME/.stack"
- "$TRAVIS_BUILD_DIR/.stack-work"
matrix:
include:
- ghc: 8.2.2
- ghc: 8.4.4
- ghc: 8.6.5
- ghc: 8.6.5
env: STACK_YAML="$TRAVIS_BUILD_DIR/stack.yaml"
install:
- |
if [ -z "$STACK_YAML" ]; then
cabal new-update
cabal new-build --enable-tests --enable-benchmarks
else
curl -sSL https://get.haskellstack.org/ | sh
stack --version
stack build --system-ghc --test --no-run-tests
fi
script:
# HLint check
- curl -sSL https://raw.github.com/ndmitchell/neil/master/misc/travis.sh | sh -s -- hlint .
- |
if [ -z "$STACK_YAML" ]; then
cabal new-test
else
stack build --system-ghc --test --bench --no-run-benchmarks --no-terminal --ghc-options=-Werror
fi
notifications:
email: false