[ci] Use bitcoindevkit/electrs base image for electrum tests

This commit is contained in:
Steve Myers 2020-10-08 16:35:00 -07:00
parent aea9abff8a
commit 98803b2573
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051
2 changed files with 15 additions and 22 deletions

View File

@ -78,8 +78,12 @@ jobs:
test-electrum:
name: Test Electrum
runs-on: ubuntu-16.04
container: bitcoindevkit/electrs
env:
MAGICAL_RPC_COOKIEFILE: /home/runner/.bitcoin/regtest/.cookie
MAGICAL_RPC_AUTH: USER_PASS
MAGICAL_RPC_USER: admin
MAGICAL_RPC_PASS: passw
MAGICAL_RPC_URL: 127.0.0.1:18443
MAGICAL_ELECTRUM_URL: tcp://127.0.0.1:60401
steps:
- name: checkout
@ -99,7 +103,7 @@ jobs:
toolchain: stable
override: true
- name: start core
run: ./ci/start-core.sh || exit 1
run: ./ci/start-core.sh
- name: test
uses: actions-rs/cargo@v1
with:

View File

@ -1,28 +1,17 @@
#!/usr/bin/env sh
set -e
echo "Starting bitcoin node."
/root/bitcoind -regtest -server -daemon -fallbackfee=0.0002 -rpcuser=admin -rpcpassword=passw -rpcallowip=0.0.0.0/0 -rpcbind=0.0.0.0
BITCOIN_VERSION=0.20.1
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1
sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-10 main" || exit 1
sudo apt-get update || exit 1
sudo apt-get install -y libllvm10 clang-10 libclang-common-10-dev || exit 1
cargo install --git https://github.com/romanz/electrs --bin electrs
curl -O -L https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VERSION/bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz
tar xf bitcoin-$BITCOIN_VERSION-x86_64-linux-gnu.tar.gz
export PATH=$PATH:./bitcoin-$BITCOIN_VERSION/bin
bitcoind -regtest=1 -daemon=1 -fallbackfee=0.0002
until bitcoin-cli -regtest getblockchaininfo; do
echo "Waiting for bitcoin node."
until /root/bitcoin-cli -regtest -rpcuser=admin -rpcpassword=passw getblockchaininfo; do
sleep 1
done
ADDR=$(bitcoin-cli -regtest getnewaddress)
bitcoin-cli -regtest generatetoaddress 150 $ADDR
echo "Generating 150 bitcoin blocks."
ADDR=$(/root/bitcoin-cli -regtest -rpcuser=admin -rpcpassword=passw getnewaddress)
/root/bitcoin-cli -regtest -rpcuser=admin -rpcpassword=passw generatetoaddress 150 $ADDR
nohup electrs --network regtest --jsonrpc-import --cookie-file $HOME/.bitcoin/regtest/.cookie &
echo "Starting electrs node."
nohup /root/electrs --network regtest --jsonrpc-import &
sleep 5