Skip to content

Commit

Permalink
travis: Update bitcoind to version 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Jul 14, 2020
1 parent 1270c3f commit b38e07c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export COMPAT=${COMPAT:-1}
export PATH=$CWD/dependencies/bin:"$HOME"/.local/bin:"$PATH"
export PYTEST_PAR=2
export PYTEST_SENTRY_ALWAYS_REPORT=1
export BITCOIN_VERSION=0.20.0

# Allow up to 4 concurrent tests when not under valgrind, which might run out of memory.
if [ "$VALGRIND" = 0 ]; then
Expand All @@ -21,10 +22,10 @@ mkdir -p dependencies/bin || true

# Download bitcoind and bitcoin-cli
if [ ! -f dependencies/bin/bitcoind ]; then
wget https://bitcoin.org/bin/bitcoin-core-0.18.1/bitcoin-0.18.1-x86_64-linux-gnu.tar.gz
tar -xzf bitcoin-0.18.1-x86_64-linux-gnu.tar.gz
mv bitcoin-0.18.1/bin/* dependencies/bin
rm -rf bitcoin-0.18.1-x86_64-linux-gnu.tar.gz bitcoin-0.18.1
wget https://bitcoin.org/bin/bitcoin-core-${BITCOIN_VERSION}/bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz
tar -xzf bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz
mv bitcoin-${BITCOIN_VERSION}/bin/* dependencies/bin
rm -rf bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz bitcoin-${BITCOIN_VERSION}
fi

pyenv global 3.7
Expand Down

0 comments on commit b38e07c

Please sign in to comment.