Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,20 @@ jobs:
- name: Build WASM (Node target)
working-directory: tests/node
run: yarn build
- name: Cache Esplora Docker image
id: cache-esplora-image
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
with:
path: /tmp/esplora-image.tar
key: esplora-docker-blockstream-esplora-${{ hashFiles('tests/docker-compose.yml') }}
- name: Load cached Esplora Docker image
if: steps.cache-esplora-image.outputs.cache-hit == 'true'
run: docker load --input /tmp/esplora-image.tar
- name: Pull and save Esplora Docker image
if: steps.cache-esplora-image.outputs.cache-hit != 'true'
run: |
docker pull blockstream/esplora
docker save blockstream/esplora --output /tmp/esplora-image.tar
- name: Start Esplora regtest
run: docker compose -f tests/docker-compose.yml up -d
- name: Wait for Esplora
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Cache the Esplora Docker image in CI so regtest integration runs can reuse the pulled image across workflow runs ([#32](https://github.com/bitcoindevkit/bdk-wasm/issues/32))
- Expand Node and regtest integration coverage for wallet address lifecycle, output introspection, fee calculation, and TxBuilder coin-selection behavior ([#22](https://github.com/bitcoindevkit/bdk-wasm/issues/22))
- Add regtest assertions for `drain_wallet` + `drain_to` producing a single drain output
- Add regtest assertions for `exclude_unconfirmed` and `exclude_below_confirmations(1)` ignoring trusted pending coins during coin selection
Expand Down
Loading