polysemy/.travis.yml
TheMatten dc16f081f4
Drop support for GHC 8.4.*, update and fix dependencies (#405)
* Drop support for GHC 8.4.*, update and fix dependencies

* Remove 8.4.4 from CI

* Remove references to loopbreaker
2021-03-20 22:46:57 +01:00

38 lines
950 B
YAML

language: haskell
dist: trusty
cache:
directories:
- $HOME/.cabal/store
cabal: "3.0"
matrix:
include:
- ghc: "8.10.1"
- ghc: "8.8.1"
- ghc: "8.6.5"
install:
- cabal --version
- ghc --version
script:
- cabal v2-update
- cabal v2-build
- cabal v2-test --enable-test
# This weird bash stuff is a workaround for haskell/cabal#5977
- "! cabal new-haddock 2>&1 >/dev/null | grep 'Failed to build documentation'"
- cabal check
- cabal sdist # tests that a source-distribution can be generated
# Check that the resulting source distribution can be built & installed.
# If there are no other `.tar.gz` files in `dist`, this can be even simpler:
# `cabal install --force-reinstalls dist/*-*.tar.gz`
- SRC_TGZ=$(cabal info . | awk '{print $2;exit}').tar.gz &&
(cd dist-newstyle/sdist && cabal v1-install --force-reinstalls "$SRC_TGZ")
- cabal v2-build polysemy-plugin
- cabal v2-test --enable-test polysemy-plugin