ghc-mod/.travis.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

2016-08-03 09:35:01 +00:00
language: c
sudo: false
cache:
apt: true
directories:
2016-08-03 09:35:01 +00:00
- $HOME/.stack
- $HOME/.ghc-mod
- $TRAVIS_BUILD_DIR/.stack-work/install
2016-08-03 09:35:01 +00:00
addons:
apt:
packages:
- libfcgi-dev
- libgmp-dev
before_install:
2016-08-03 09:35:01 +00:00
- unset CC
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
- stack --version
install:
2016-08-03 09:35:01 +00:00
#- git clone --depth=1 https://github.com/DanielG/cabal-helper.git
- stack setup --resolver=ghc-$GHCVER
- stack install cabal-install --resolver=$RES
2014-05-01 01:07:10 +00:00
- cabal update
2016-08-03 09:35:01 +00:00
- stack install happy --resolver=$RES
#- stack init --ignore-subdirs --resolver=ghc-$GHCVER ./ cabal-helper/
- stack init --ignore-subdirs --resolver=ghc-$GHCVER ./
script:
- cabal check
2016-08-03 09:35:01 +00:00
- stack build
- stack test ghc-mod:spec
matrix:
2016-08-03 09:35:01 +00:00
matrix:
include:
- env: GHCVER=7.8.4 RES=lts-2.22
compiler: ': #GHC 7.8.4'
- env: GHCVER=7.10.3 RES=lts-6.9
compiler: ': #GHC 7.10.3'
- env: GHCVER=8.0.1 RES=nightly-2016-08-01
compiler: ': #GHC 8.0.1'