Skip to content
Merged
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
12 changes: 11 additions & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,18 @@ jobs:
if: matrix.os == 'macos-latest'
run: brew install capnp

# Install cargo-binstall so tool installs below use prebuilt binaries.
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@v1.20.0
with:
version: "1.20.0"

# Install cargo-nextest via cargo-binstall (no source build).
# Keep quick-install disabled to only use upstream release artifacts.
- name: Install cargo-nextest
run: cargo install cargo-nextest --version 0.9.100 --locked
env:
GITHUB_TOKEN: ${{ github.token }}
run: cargo binstall --no-confirm --disable-telemetry --disable-strategies quick-install --locked cargo-nextest@0.9.100

- name: Integration Tests
run: |
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/semver-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,18 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y cmake

# Install cargo-binstall so tool installs below use prebuilt binaries.
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@v1.20.0
with:
version: "1.20.0"

# Install cargo-semver-checks via cargo-binstall (no source build).
# Keep quick-install disabled to only use upstream release artifacts.
- name: Install cargo-semver-checks
run: cargo install cargo-semver-checks --version 0.44.0 --locked
env:
GITHUB_TOKEN: ${{ github.token }}
run: cargo binstall --no-confirm --disable-telemetry --disable-strategies quick-install --locked cargo-semver-checks@0.44.0

- name: Run semver checks for bitcoin-core-sv2
working-directory: bitcoin-core-sv2
Expand Down
Loading