-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
47 lines (40 loc) · 1.39 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
# Initially copied from https://raw.githubusercontent.com/commercialhaskell/stack/stable/doc/travis-simple.yml
# 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
# Choose a build environment
dist: xenial
# 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
# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev
- shellcheck
- sqlite3
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
install:
# Build dependencies
- stack --no-terminal --install-ghc test --only-dependencies
- stack haddock
script:
# Build the package, its tests and run the tests
- stack --no-terminal test
# run hlint
- curl -sSL https://raw.github.com/ndmitchell/neil/master/misc/travis.sh | sh -s -- hlint $(git ls-files "*.hs")
# Generate documentation from sources
- stack exec haddock -- --html $(find src -name \*.hs) -o html
# Check scripts in docker
- shellcheck -S error releng/docker/run-docker-run.sh