Skip to content

Commit c02f843

Browse files
committed
chore(ci+justfile): add bdk_wallet_fuzz to excluded packages
1 parent 8ea8cb6 commit c02f843

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cont_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
env:
5656
MATRIX_RUST_VERSION: ${{ matrix.rust.version }}
5757
run: |
58-
cargo build --workspace --exclude 'example_*' ${{ matrix.features }}
59-
cargo test --workspace --exclude 'example_*' ${{ matrix.features }}
58+
cargo build --workspace --exclude 'example_*' --exclude 'bdk_wallet_fuzz' ${{ matrix.features }}
59+
cargo test --workspace --exclude 'example_*' --exclude 'bdk_wallet_fuzz' ${{ matrix.features }}
6060
6161
check-no-std:
6262
needs: prepare

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build:
1111
# Check code: formatting, compilation, linting, and commit signature
1212
check:
1313
cargo +nightly fmt --all -- --check
14-
cargo check --workspace --exclude 'example_*' --all-features
14+
cargo check --workspace --exclude 'example_*' --exclude 'bdk_wallet_fuzz' --all-features
1515
cargo clippy --all-features --all-targets -- -D warnings
1616
@[ "$(git log --pretty='format:%G?' -1 HEAD)" = "N" ] && \
1717
echo "\n⚠️ Unsigned commit: BDK requires that commits be signed." || \
@@ -23,7 +23,7 @@ fmt:
2323

2424
# Run all tests on the workspace with all features
2525
test:
26-
cargo test --workspace --exclude 'example_*' --all-features
26+
cargo test --workspace --exclude 'example_*' --exclude 'bdk_wallet_fuzz' --all-features
2727

2828
# Run pre-push suite: format, check, and test
2929
pre-push: fmt check test

0 commit comments

Comments
 (0)