-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.travis.yml
67 lines (56 loc) · 2.2 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
language: c
env:
- CABALVER=1.22 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.2
- CABALVER=1.22 GHCVER=head
matrix:
allow_failures:
- env: CABALVER=1.22 GHCVER=head
cache:
directories:
- $HOME/.ccache
before_install:
# Installing cabal and ghc
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-add-repository -y ppa:bitcoin/bitcoin
- travis_retry sudo apt-get update
- 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
# Install hlint (via apt-get if available, otherwise via cabal)
- travis_retry sudo apt-get -q -y install hlint || cabal install hlint
# Installing bitcoind and bitcoin-cli from source
- ccache -s
- travis_retry sudo apt-get install -y build-essential libssl-dev libboost-all-dev libdb4.8-dev libdb4.8++-dev libgtk2.0-dev
- travis_retry wget https://bitcoin.org/bin/bitcoin-core-0.10.2/bitcoin-0.10.2.tar.gz
- tar -xzf bitcoin-0.10.2.tar.gz && cd bitcoin-0.10.2 && ./configure --disable-tests --with-gui=no && make && sudo make install && cd ..
- which bitcoind
- which bitcoin-cli
- bitcoind -regtest -rpcuser=user -rpcpassword=pass -daemon
# Wait for bitcoin daemon to come online
- sleep 10
# Bootstrap our Bitcoin wallet with a few generated coints
- bitcoin-cli -regtest -rpcuser=user -rpcpassword=pass setgenerate true 101
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
- cabal build -j
- travis_retry cabal test --show-details=always
- 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:
- ccache -s