-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
.travis.yml
47 lines (40 loc) · 1.75 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
dist: bionic
# The following enables several GHC versions to be tested; often it's enough to
# test only against the last release in a major GHC version. Feel free to omit
# lines listings versions you don't need/want testing for.
env:
- CABALVER=2.4 GHCVER=7.6.3
- CABALVER=2.4 GHCVER=7.8.4
- CABALVER=2.4 GHCVER=7.10.3
- CABALVER=2.4 GHCVER=8.0.2
- CABALVER=2.4 GHCVER=8.2.2
- CABALVER=2.4 GHCVER=8.4.4
- CABALVER=2.4 GHCVER=8.6.5
- CABALVER=2.4 GHCVER=8.8.3
- CABALVER=2.4 GHCVER=8.10.1
# - CABALVER=head GHCVER=head # see section about GHC HEAD snapshots
# Note: the distinction between `before_install` and `install` is not important.
before_install:
# We remove the pgdg.list file because it's there to add the postgresql
# repository, and we don't need it. Leaving it in causes problems with Ubuntu
# Bionic (the distro is no longer supported by postgresql).
- sudo rm /etc/apt/sources.list.d/pgdg.list
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install --yes libcwiid-dev libsdl1.2-dev
- travis_retry sudo apt-get install --yes cabal-install-$CABALVER ghc-$GHCVER # see note about happy/alex
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
- cabal --version
- ghc --version
- travis_retry cabal update
install:
- travis_retry cabal install --enable-tests -fexamples --only-dependencies yampa/ yampa-test/
script:
- if [ "${TRAVIS_HASKELL_VERSION}" == "8.4.4" ]; then cabal install -ftest-doc-coverage --run-tests -j1 yampa/ yampa-test/; else cabal install --enable-tests -fexamples -j1 yampa/ yampa-test/; fi
after_script:
branches:
only:
- master
- /^develop.*$/
- /^hotfix.*$/
- /^release.*$/