Skip to content

Commit b913dc2

Browse files
committed
CI test_features: allow warnings + fix permission denied
1 parent 86510ac commit b913dc2

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ jobs:
7575
steps:
7676
- uses: actions/checkout@v4
7777
- uses: actions-rust-lang/setup-rust-toolchain@v1
78+
with:
79+
rustflags: ""
7880
- name: Test with electrum feature
7981
run: |
8082
cargo test --no-default-features --features electrum go_online::fail

tests/docker-compose.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ services:
44
bitcoind:
55
image: registry.gitlab.com/hashbeam/docker/bitcoind:25.0
66
command: "-fallbackfee=0.0002"
7-
volumes:
8-
- ./tmp/bitcoin:/srv/app/.bitcoin
97
electrs:
108
image: registry.gitlab.com/hashbeam/docker/electrs:0.9.14
11-
volumes:
12-
- ./tmp/electrs:/srv/app/db
139
ports:
1410
- 50001:50001
1511
depends_on:
@@ -41,8 +37,6 @@ services:
4137
NO_PRECACHE: 1
4238
NO_ADDRESS_SEARCH: 1
4339
NO_REGTEST_MINING: 1
44-
volumes:
45-
- ./tmp/esplora:/data
4640
ports:
4741
- 50004:50001
4842
- 8094:80

tests/start_services.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ $COMPOSE build $PROXY_MOD_PROTO
2020
$COMPOSE build $PROXY_MOD_API
2121

2222
$COMPOSE down -v
23-
# cleaning esplora data dir
24-
if [ -d "$TEST_DIR/esplora" ]; then
25-
$COMPOSE run --rm esplora bash -c "rm -rf /data/.bitcoin.conf /data/*"
26-
fi
2723
rm -rf $TEST_DIR
2824
mkdir -p $TEST_DIR
2925
# see docker-compose.yml for the exposed ports

0 commit comments

Comments
 (0)