-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
45 lines (37 loc) ยท 1.1 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
# Choose a lightweight base image; we provide our own build tools.
language: c
os:
- linux
- osx
sudo: false
addons:
apt:
packages:
- libgmp-dev # GHC depends on system GMP (maybe?).
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry wget -qO- https://get.haskellstack.org/ | sh
# - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# Install code linting tool
- stack install hlint
script:
- stack update
- stack setup
- stack --version
- stack ghc -- --version
- stack build --coverage --fast --haddock --no-terminal --test
- stack hpc report
- stack exec hlint app src lib
after_script:
- hpc-coveralls --coverage-mode=StrictlyFullLines
--exclude-dir=prototype
--exclude-dir=test
--exclude-dir=utils
testsuite
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
- $HOME/build/amnh/PCG/.stack-work