Merge pull request #429 from plebhash/2026-04-14-version-bumps #1426
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: 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 |