Skip to content

Commit 96fa072

Browse files
committed
[CI] restore test with env var BITCOIND_EXE
1 parent 0477514 commit 96fa072

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- uses: Swatinem/rust-cache@v1.2.0
2121
with:
2222
key: ${{ matrix.feature }}${{ matrix.os }}
23+
if: ${{ matrix.os != 'macos-10.15' }} # issue with hard-links on mac
2324
- uses: actions-rs/toolchain@v1
2425
with:
2526
toolchain: stable
@@ -28,11 +29,18 @@ jobs:
2829
with:
2930
command: test
3031
args: --features ${{ matrix.feature }}
32+
- run: echo "BITCOIND_EXE=$(find ./target/debug -name bitcoind)" >> $GITHUB_ENV
33+
- uses: actions-rs/cargo@v1
34+
with:
35+
command: test
36+
if: ${{ matrix.feature != '0_18_1' && matrix.feature != '0_18_0' && matrix.feature != '0_17_1' }} # would fail `test_multi_wallet`
37+
3138

3239
cosmetics:
3340
runs-on: ubuntu-20.04
3441
steps:
3542
- uses: actions/checkout@v2
43+
- uses: Swatinem/rust-cache@v1.2.0
3644
- uses: actions-rs/toolchain@v1
3745
with:
3846
toolchain: stable

0 commit comments

Comments
 (0)