Merge bitcoindevkit/bdk#1608: Bump bdk_wallet version to 1.0.0-beta.3 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: CI | |
jobs: | |
prepare: | |
runs-on: ubuntu-latest | |
outputs: | |
rust_version: ${{ steps.read_toolchain.outputs.rust_version }} | |
steps: | |
- name: "Checkout repo" | |
uses: actions/checkout@v4 | |
- name: "Read rust version" | |
id: read_toolchain | |
run: echo "rust_version=$(cat rust-version)" >> $GITHUB_OUTPUT | |
build-test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- version: stable | |
clippy: true | |
- version: 1.63.0 # MSRV | |
features: | |
- --no-default-features | |
- --all-features | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust.version }} | |
override: true | |
profile: minimal | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Pin dependencies for MSRV | |
if: matrix.rust.version == '1.63.0' | |
run: | | |
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5" | |
cargo update -p time --precise "0.3.20" | |
cargo update -p home --precise "0.5.5" | |
cargo update -p proptest --precise "1.2.0" | |
cargo update -p url --precise "2.5.0" | |
cargo update -p cc --precise "1.0.105" | |
cargo update -p tokio --precise "1.38.1" | |
cargo update -p tokio-util --precise "0.7.11" | |
- name: Build | |
run: cargo build ${{ matrix.features }} | |
- name: Test | |
run: cargo test ${{ matrix.features }} | |
check-no-std: | |
name: Check no_std | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
# target: "thumbv6m-none-eabi" | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Check bdk_chain | |
working-directory: ./crates/chain | |
# TODO "--target thumbv6m-none-eabi" should work but currently does not | |
run: cargo check --no-default-features --features miniscript/no-std,hashbrown | |
- name: Check bdk wallet | |
working-directory: ./crates/wallet | |
# TODO "--target thumbv6m-none-eabi" should work but currently does not | |
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown | |
- name: Check esplora | |
working-directory: ./crates/esplora | |
# TODO "--target thumbv6m-none-eabi" should work but currently does not | |
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown | |
check-wasm: | |
name: Check WASM | |
runs-on: ubuntu-20.04 | |
env: | |
CC: clang-10 | |
CFLAGS: -I/usr/include | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# Install a recent version of clang that supports wasm32 | |
- run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1 | |
- run: sudo apt-get update || exit 1 | |
- run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
target: "wasm32-unknown-unknown" | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Check bdk wallet | |
working-directory: ./crates/wallet | |
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown | |
- name: Check esplora | |
working-directory: ./crates/esplora | |
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,async | |
fmt: | |
name: Rust fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Check fmt | |
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check | |
clippy_check: | |
needs: prepare | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ needs.prepare.outputs.rust_version }} | |
components: clippy | |
override: true | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features --all-targets -- -D warnings | |
build-examples: | |
name: Build Examples | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
example-dir: | |
- example_cli | |
- example_bitcoind_rpc_polling | |
- example_electrum | |
- example_esplora | |
- wallet_electrum | |
- wallet_esplora_async | |
- wallet_esplora_blocking | |
- wallet_rpc | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
- name: Rust Cache | |
uses: Swatinem/[email protected] | |
- name: Build | |
working-directory: example-crates/${{ matrix.example-dir }} | |
run: cargo build |