-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
84 lines (69 loc) · 2.91 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
language: c
env:
- CABALVER=1.22 GHCVER=7.6.3
- CABALVER=1.22 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.1
- CABALVER=1.22 GHCVER=head
matrix:
allow_failures:
- env: CABALVER=1.22 GHCVER=7.10.1
- env: CABALVER=1.22 GHCVER=head
before_install:
- travis_retry sudo apt-add-repository -y ppa:i2p-maintainers/i2p
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install i2p
- sudo sed -i /etc/default/i2p -e 's/RUN_DAEMON="false"/RUN_DAEMON="true"/'
# This generates the initial configuration
- sudo service i2p start
- sudo service i2p stop
# Open up the SAM and BOB bridges
- sudo sed -i /var/lib/i2p/i2p-config/clients.config -e 's/clientApp.1.startOnLoad=false/clientApp.1.startOnLoad=true/'
- sudo sed -i /var/lib/i2p/i2p-config/clients.config -e 's/clientApp.5.startOnLoad=false/clientApp.5.startOnLoad=true/'
- sudo cat /var/lib/i2p/i2p-config/clients.config
- sudo service i2p start
# Installing cabal and ghc
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER # see note about happy/alex
- export PATH=$HOME/.cabal/bin:/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
- travis_retry cabal update
# Happy/alex hack for ghc > 7.8.1
- |
if [ $GHCVER = "head" ] || [ ${GHCVER%.*} = "7.8" ] || [ ${GHCVER%.*} = "7.10" ]; then
travis_retry sudo apt-get install happy-1.19.4 alex-3.1.3
export PATH=/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:$PATH
else
travis_retry sudo apt-get install happy alex
fi
# Install hlint
- cabal install hlint
# Install hpc-coveralls
- travis_retry cabal sandbox init
- cabal install hpc-coveralls -j --bindir=$HOME/.cabal/bin/ --constraint='aeson >= 0.7'
- cabal sandbox delete
# Wait until SAM and BOB bridges are open
- nc -zvv localhost 7656; out=$?; while [[ $out -ne 0 ]]; do echo "Retry hit port 7656..."; nc -zvv localhost 7656; out=$?; sleep 1; done
- nc -zvv localhost 2827; out=$?; while [[ $out -ne 0 ]]; do echo "Retry hit port 2827..."; nc -zvv localhost 2827; out=$?; sleep 1; done
install:
- cabal --version
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
- travis_retry cabal install --only-dependencies --enable-tests --enable-benchmarks -j
script:
- hlint src --ignore="Parse error"
- cabal configure --enable-tests --enable-benchmarks --enable-coverage -fdebug
- cabal build -j
- travis_retry run-cabal-test --cabal-name=cabal --show-details=streaming
- cabal check
- cabal sdist
# 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;
fi ;
cd ../
after_script:
- find .
- hpc-coveralls test-suite --exclude-dir=test --display-report