forked from Soostone/katip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
54 lines (46 loc) · 1.82 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
# Use new container infrastructure to enable caching
sudo: false
# 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
# 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:
include:
- env: ARGS="--stack-yaml=stack-lts-2.yaml"
- env: ARGS="--stack-yaml=stack-lts-3.yaml"
- env: ARGS="--stack-yaml=stack-lts-4.yaml"
- env: ARGS="--stack-yaml=stack-lts-5.yaml"
- env: ARGS="--resolver=lts-6"
- env: ARGS="--resolver=lts-7.19"
- env: ARGS="--resolver=lts-8"
- env: ARGS="--resolver=nightly"
allow_failures:
- env: ARGS="--resolver=nightly"
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:
- wget --no-check-certificate https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.5.2.tar.gz
- tar xzf elasticsearch-1.5.2.tar.gz
- ./elasticsearch-1.5.2/bin/elasticsearch &
# This line does all of the work: installs GHC if necessary, build the library,
# executables, and test suites, and runs the test suites. --no-terminal works
# around some quirks in Travis's terminal implementation.
script:
- stack $ARGS setup
- stack $ARGS test $BUILDFLAGS --no-terminal --haddock --no-haddock-deps
- stack $ARGS bench
- stack $ARGS build $BUILDFLAGS
- for f in katip/examples/*.hs; do stack $ARGS ghc -- -Wall -Werror $f -o /dev/null; done
- stack $ARGS sdist
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack