-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
54 lines (44 loc) · 1.84 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Stack's standard Travis config, taken from
# http://docs.haskellstack.org/en/stable/GUIDE.html#travis-with-caching
# Use new container infrastructure to enable caching
sudo: false
# Choose a lightweight base image; we provide our own build tools.
language: generic
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could also do things like
# change flags or use --stack-yaml to point to a different file.
matrix:
fast_finish: true
include:
- env: ARGS="" SKIP_DOCTESTS=false
- env: ARGS="--resolver lts" SKIP_DOCTESTS=false
- env: ARGS="--resolver nightly" SKIP_DOCTESTS=false
- env: ARGS="--resolver lts-10" SKIP_DOCTESTS=false
- env: ARGS="--resolver lts-9" SKIP_DOCTESTS=true
- env: ARGS="--resolver lts-8" SKIP_DOCTESTS=true
- env: ARGS="--resolver lts-7" SKIP_DOCTESTS=true
- env: ARGS="--resolver lts-6" SKIP_DOCTESTS=true
- env: ARGS="--resolver lts-5" SKIP_DOCTESTS=true
before_install:
# Download and unpack the stack executable
- 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 $ARGS --no-terminal setup
- stack $ARGS --no-terminal install hlint hscolour
script:
- stack $ARGS --no-terminal build --pedantic
# Tests
- stack $ARGS --no-terminal test --pedantic :vgrep-test
- $SKIP_DOCTESTS || stack $ARGS --no-terminal test --pedantic :doctest
- stack $ARGS --no-terminal haddock --no-haddock-deps
- stack $ARGS --no-terminal sdist
- hlint src test app
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack