-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
79 lines (69 loc) · 1.74 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
69
70
71
72
73
74
75
76
77
78
79
# Don't run as root.
sudo: false
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
# Build matrix.
matrix:
include:
- env: GHCVER=8.8.3 STACK_YAML=stack.yaml
compiler: GHC-8.8.3
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.8.3
- env: GHCVER=8.6.5 STACK_YAML=stack-8.6.yaml
compiler: GHC-8.6.5
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.6.5
- env: GHCVER=8.4.2 STACK_YAML=stack-8.4.yaml
compiler: GHC-8.4.2
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.4.2
- env: GHCVER=8.2.2 STACK_YAML=stack-8.2.yaml
compiler: GHC-8.2.2
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.2.2
- env: GHCVER=8.0.2 STACK_YAML=stack-8.0.yaml
compiler: GHC-8.0.2
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-8.0.2
- env: GHCVER=7.10.3 STACK_YAML=stack-7.10.yaml
compiler: GHC-7.10.3
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-7.10.3
# Download and unpack stack.
before_install:
- 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'
# Avoid timeouts.
install:
- travis_wait stack --no-terminal --skip-ghc-check setup
- travis_wait stack --no-terminal --skip-ghc-check test --only-snapshot
# Run the tests.
script:
- stack --no-terminal --skip-ghc-check test --fast