Add support for resolving BIP 353 Human-Readable Names #3205
Workflow file for this run
This file contains hidden or 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
| name: CI Checks - Rust Tests | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| platform: [ | |
| ubuntu-latest, | |
| macos-latest, | |
| windows-latest, | |
| ] | |
| toolchain: [ | |
| stable, | |
| beta, | |
| 1.85.0, # Our MSRV | |
| ] | |
| include: | |
| - toolchain: stable | |
| check-fmt: true | |
| build-uniffi: true | |
| platform: ubuntu-latest | |
| - toolchain: stable | |
| platform: macos-latest | |
| - toolchain: stable | |
| platform: windows-latest | |
| - toolchain: 1.85.0 | |
| msrv: true | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v6 | |
| - name: Install Rust ${{ matrix.toolchain }} toolchain | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }} | |
| - name: Check formatting on Rust ${{ matrix.toolchain }} | |
| if: matrix.check-fmt | |
| run: rustup component add rustfmt && cargo fmt --all -- --check | |
| - name: Pin packages to allow for MSRV | |
| if: matrix.msrv | |
| run: | | |
| cargo update -p idna_adapter --precise "1.2.0" --verbose # idna_adapter 1.2.1 uses ICU4X 2.2.0, requiring 1.86 and newer | |
| - name: Set RUSTFLAGS to deny warnings | |
| if: "matrix.toolchain == 'stable'" | |
| run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV" | |
| - name: Enable caching for bitcoind | |
| id: cache-bitcoind | |
| uses: actions/cache@v5 | |
| with: | |
| path: bin/bitcoind-${{ runner.os }}-${{ runner.arch }} | |
| key: bitcoind-29.0-${{ runner.os }}-${{ runner.arch }} | |
| - name: Enable caching for electrs | |
| id: cache-electrs | |
| uses: actions/cache@v5 | |
| with: | |
| path: bin/electrs-${{ runner.os }}-${{ runner.arch }} | |
| key: electrs-${{ runner.os }}-${{ runner.arch }} | |
| - name: Download bitcoind/electrs | |
| if: "matrix.platform != 'windows-latest' && (steps.cache-bitcoind.outputs.cache-hit != 'true' || steps.cache-electrs.outputs.cache-hit != 'true')" | |
| run: | | |
| source ./scripts/download_bitcoind_electrs.sh | |
| mkdir -p bin | |
| mv "$BITCOIND_EXE" bin/bitcoind-${{ runner.os }}-${{ runner.arch }} | |
| mv "$ELECTRS_EXE" bin/electrs-${{ runner.os }}-${{ runner.arch }} | |
| - name: Set bitcoind/electrs environment variables | |
| run: | | |
| echo "BITCOIND_EXE=$( pwd )/bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | |
| echo "ELECTRS_EXE=$( pwd )/bin/electrs-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | |
| - name: Build on Rust ${{ matrix.toolchain }} | |
| env: | |
| RUSTFLAGS: "--cfg hrn_tests" | |
| run: cargo build --verbose --color always | |
| - name: Build with UniFFI support on Rust ${{ matrix.toolchain }} | |
| if: matrix.build-uniffi | |
| env: | |
| RUSTFLAGS: "--cfg hrn_tests" | |
| run: cargo build --features uniffi --verbose --color always | |
| - name: Check release build on Rust ${{ matrix.toolchain }} | |
| env: | |
| RUSTFLAGS: "--cfg hrn_tests" | |
| run: cargo check --release --verbose --color always | |
| - name: Check release build with UniFFI support on Rust ${{ matrix.toolchain }} | |
| if: matrix.build-uniffi | |
| env: | |
| RUSTFLAGS: "--cfg hrn_tests" | |
| run: cargo check --release --features uniffi --verbose --color always | |
| - name: Test on Rust ${{ matrix.toolchain }} | |
| if: "matrix.platform != 'windows-latest'" | |
| run: | | |
| RUSTFLAGS="--cfg no_download --cfg cycle_tests --cfg hrn_tests" cargo test | |
| - name: Test with UniFFI support on Rust ${{ matrix.toolchain }} | |
| if: "matrix.platform != 'windows-latest' && matrix.build-uniffi" | |
| run: | | |
| RUSTFLAGS="--cfg no_download --cfg cycle_tests --cfg hrn_tests" cargo test --features uniffi | |
| linting: | |
| name: Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v6 | |
| - name: Install Rust and clippy | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable | |
| rustup component add clippy | |
| - name: Ban `unwrap` in library code | |
| run: | | |
| RUSTFLAGS="--cfg hrn_tests" cargo clippy --lib --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | |
| RUSTFLAGS="--cfg hrn_tests" cargo clippy --lib --features uniffi --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | |
| doc: | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| env: | |
| RUSTDOCFLAGS: "-Dwarnings --cfg hrn_tests" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| - uses: dtolnay/install@cargo-docs-rs | |
| - run: cargo docs-rs |