forked from ff-notes/ff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
60 lines (54 loc) · 1.56 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
dist: xenial
branches:
only:
- master
# 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/.local/bin
- $HOME/.stack
before_install:
# Install packages
- sudo apt-add-repository --yes ppa:beineri/opt-qt-5.12.0-xenial
- sudo apt update
- sudo apt install colordiff # common
- sudo apt install libgmp-dev # GHC
- sudo apt install mesa-common-dev qt512base # ff-qt
- sudo apt install libgirepository1.0-dev libgtk-3-dev # ff-gtk
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- |
if [ -x ~/.local/bin/stack ]; then
stack --version
else
travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 \
| tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
fi
- export STACK="stack --no-terminal --install-ghc"
matrix:
include:
- name: build and test
install:
# Build dependencies
- $STACK build --test --only-dependencies
script:
# Build the package, its tests, and its docs and run the tests
- test/script
- name: hlint
install:
- $STACK build hlint
script:
- $STACK exec -- hlint .
- name: haddock
script:
- $STACK haddock --no-haddock-deps
- name: weeder
install:
- $STACK build weeder
script:
- $STACK exec -- weeder
allow_failures:
- name: weeder