Skip to content

Merge pull request #429 from plebhash/2026-04-14-version-bumps #1426

Merge pull request #429 from plebhash/2026-04-14-version-bumps

Merge pull request #429 from plebhash/2026-04-14-version-bumps #1426

Workflow file for this run

name: Lockfiles
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install capnp dependencies
run: sudo apt-get install -y capnproto libcapnp-dev
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Build with locked dependencies
run: |
cargo build --manifest-path=stratum-apps/Cargo.toml --all-features --locked
cargo build --manifest-path=pool-apps/Cargo.toml --locked
cargo build --manifest-path=pool-apps/jd-server/Cargo.toml --locked
cargo build --manifest-path=miner-apps/Cargo.toml --locked
cargo build --manifest-path=integration-tests/Cargo.toml --locked
# while bitcoin-core-sv2 crate is still a lib crate, no need to lock it so we skip it here
# whenever we implement a binary executable for bitcoin-core-sv2, we will need to cover it here