-
Notifications
You must be signed in to change notification settings - Fork 32
/
.travis.yml
90 lines (78 loc) · 2.79 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
80
81
82
83
84
85
86
87
88
89
# NB: don't set `language: haskell` here
sudo: false # Use new caching docker based infrastructure
cache: apt
cache:
directories:
# - $HOME/.stack
- $HOME/.ghc
- $HOME/.cabal
- $HOME/.ghc-mod
# - /opt
# See also https://github.com/hvr/multi-ghc-travis for more information
env:
- CABALVER=1.22 GHCVER=7.10.3
- CABALVER=1.24 GHCVER=8.0.1
- CABALVER=1.24 GHCVER=8.0.2
# - CABALVER=1.22 GHCVER=head # see section about GHC HEAD snapshots
addons:
apt:
sources:
- hvr-ghc
- cassou-emacs
packages:
- libgmp-dev
- cabal-install-1.22
- cabal-install-1.24
- happy-1.19.4
- alex-3.1.3
- ghc-7.10.3
- ghc-8.0.1
- ghc-8.0.2
- emacs24
# matrix:
# allow_failures:
# - env: CABALVER=1.22 GHCVER=head
# Note: the distinction between `before_install` and `install` is not important.
before_install:
- export PATH=/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:$PATH
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
install:
- cabal --version
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
- travis_retry cabal update
# - |
# git clone https://github.com/alanz/ghc-exactprint.git
# (cd ghc-exactprint && git checkout master && cabal install)
# - |
# git clone https://github.com/DanielG/cabal-helper.git
# (cd cabal-helper && git checkout master && cabal install)
# - |
# git clone https://github.com/alanz/ghc-mod.git
# (cd ghc-mod && git checkout release && cabal install)
# - pwd
# - cabal install http://hackage.haskell.org/package/ghc-mod-5.6.0.0/candidate/ghc-mod-5.6.0.0.tar.gz
- cabal install --dependencies-only --enable-tests
# Here starts the actual work to be performed for the package under
# test; any command which exits with a non-zero exit code causes the
# build to fail.
script:
- if [ -f configure.ac ]; then autoreconf -i; fi
# GHC 7.10.2 times out on compilation if optimisation is not disabled
- cabal configure --disable-optimization --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging
- cabal build # this builds all libraries and executables (including tests/benchmarks)
- cabal haddock
- ./travis_long cabal test --show-details=streaming
- cabal check
- cabal sdist # tests that a source-distribution can be generated
- emacs --version
- emacs -Q --batch -L elisp -l elisp/tests/hare-tests.el -f ert-run-tests-batch-and-exit
# The following scriptlet checks that the resulting source distribution can be built & installed
# - export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
# cd dist/;
# if [ -f "$SRC_TGZ" ]; then
# cabal install --force-reinstalls "$SRC_TGZ";
# else
# echo "expected '$SRC_TGZ' not found";
# exit 1;
notifications:
irc: "irc.freenode.org#haskell-refactorer"