-
Notifications
You must be signed in to change notification settings - Fork 16
/
.travis.yml
35 lines (28 loc) · 1.01 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
# Based on http://docs.haskellstack.org/en/stable/travis_ci.html
# and http://docs.haskellstack.org/en/stable/GUIDE.html#travis-with-caching
sudo: false
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
- libcairo2
- libcairo2-dev
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'
# --no-terminal works around some quirks in Travis's terminal implementation.
script:
- stack $ARGS --no-terminal --install-ghc install alex happy
- stack $ARGS --no-terminal --install-ghc install gtk2hs-buildtools
- stack $ARGS --no-terminal --install-ghc build
notifications:
email: true