-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.travis.yml
68 lines (59 loc) · 2.52 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# This is the simple Travis configuration, which is intended for use
# on applications which do not require cross-platform and
# multiple-GHC-version support. For more information and other
# options, see:
#
# https://docs.haskellstack.org/en/stable/travis_ci/
#
# Copy these contents into the root directory of your Github project in a file
# named .travis.yml
# Use new container infrastructure to enable caching
sudo: false
# Do not choose a language; we provide our own build tools.
language: generic
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
- $HOME/.cabal
- dist-newstyle
- .stack-work
# Ensure necessary system libraries are present
#addons:
#apt:
#packages:
# this installs the system version of ghc; we install ghc using stack instead
#- libgmp-dev
#- ghc
# this installs an older version of cabal which doesn't support new-build
#- cabal-install
env:
# if this build fails and you need to bump the lts, remember
# to also bump the lower bounds in package.yaml to match the
# versions provided by that new lts!
- BUILD=stack RESOLVER="lts-8.0"
- BUILD=stack RESOLVER="lts-12.26"
- BUILD=cabal RESOLVER="lts-12.26"
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'
# Install a recent version of cabal which supports new-build
- stack install cabal-install
# Make sure stack and cabal use the same ghc version
- export PATH="$(stack --resolver="$RESOLVER" path --compiler-bin):$PATH"
install:
# Build the package, and its tests and its docs (stack)
- if [ "$BUILD" == "stack" ]; then stack --resolver="lts-10.0" install happy; fi # hardcoded resolver because happy no longer builds on lts-8.0
- if [ "$BUILD" == "stack" ]; then stack --resolver="$RESOLVER" --no-terminal --install-ghc test --no-run-tests --haddock --no-haddock-deps; fi
# Build the package and its tests (cabal)
- if [ "$BUILD" == "cabal" ]; then ~/.local/bin/cabal update; fi
- if [ "$BUILD" == "cabal" ]; then ~/.local/bin/cabal sandbox init; fi
- if [ "$BUILD" == "cabal" ]; then ~/.local/bin/cabal install happy; fi
- if [ "$BUILD" == "cabal" ]; then ~/.local/bin/cabal install --enable-tests; fi
script:
# Run the tests (stack)
- if [ "$BUILD" == "stack" ]; then stack --resolver="$RESOLVER" --no-terminal test; fi
# Run the tests (cabal)
- if [ "$BUILD" == "cabal" ]; then ~/.local/bin/cabal test; fi