Skip to content

Commit

Permalink
test3
Browse files Browse the repository at this point in the history
  • Loading branch information
ATarrio committed May 7, 2024
1 parent e423501 commit 1e0227c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
services:
bitcoind01:
image: kylemanna/bitcoind:latest
volumes:
- ${{ github.workspace }}/build/.test/bitcoind.conf:/etc/bitcoind/bitcoind.conf
env:
DISABLEWALLET: "0"
ports:
Expand All @@ -34,6 +36,14 @@ jobs:
--entrypoint "/usr/local/bin/bitcoind"
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Restart bitcoind01
uses: docker://docker
with:
args: docker restart bitcoind01

- name: Test bitcoin nodes
run: |
echo Test bitcoin node 1
Expand Down
13 changes: 13 additions & 0 deletions .test/bitcoind.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
testnet=0
server=1
regtest=1
daemon=0
port=31591
rpcuser=admin
rpcpassword=admin
rpcbind=0.0.0.0:32591
rpcallowip=0.0.0.0/0
rpcport=18332
printconsole=1

peertimeout=999999

0 comments on commit 1e0227c

Please sign in to comment.