Skip to content

Commit 61ce292

Browse files
committed
Merge branch 'develop' into refactor/btc-rpc-rollout-step2-6387
2 parents dba6918 + 6a2f682 commit 61ce292

26 files changed

+1559
-1545
lines changed

.github/workflows/bitcoin-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
exclude:
5959
# The following tests are excluded from CI runs. Some of these may be
6060
# worth investigating adding back into the CI
61-
- test-name: tests::bitcoin_regtest::bitcoind_integration_test_segwit
6261
- test-name: tests::nakamoto_integrations::consensus_hash_event_dispatcher
6362
- test-name: tests::neon_integrations::atlas_integration_test
6463
- test-name: tests::neon_integrations::atlas_stress_integration_test

.github/workflows/cargo-hack-check.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,24 @@ jobs:
116116

117117
- name: Run cargo hack check
118118
run: ${{ matrix.command }}
119+
120+
fuzz-targets:
121+
name: Fuzz targets (nightly)
122+
runs-on: ubuntu-latest
123+
steps:
124+
- name: Checkout
125+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
126+
with:
127+
persist-credentials: false
128+
129+
- name: Install Rust nightly toolchain
130+
uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1.13.0
131+
with:
132+
toolchain: nightly
133+
134+
- name: Check fuzz targets
135+
run: |
136+
cargo +nightly check \
137+
--manifest-path clarity/fuzz/Cargo.toml \
138+
--bins \
139+
--locked

0 commit comments

Comments
 (0)