Skip to content

Commit f1691e6

Browse files
Merge branch stacks/pox-wf-integration into feat/underscore-prefix
2 parents db6992e + 559ea2f commit f1691e6

117 files changed

Lines changed: 11128 additions & 5510 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[alias]
22
stacks-node = "run --package stacks-node --"
33
fmt-stacks = "fmt -- --config group_imports=StdExternalCrate,imports_granularity=Module"
4-
clippy-stacks = "clippy -p stx-genesis -p libstackerdb -p stacks-signer -p pox-locking -p clarity-types -p clarity -p libsigner -p stacks-common -p clarity-cli -p stacks-cli -p stacks-inspect --no-deps --tests --all-features -- -D warnings -Aclippy::unnecessary_lazy_evaluations"
4+
clippy-stacks = "clippy -p stx-genesis -p libstackerdb -p stacks-signer -p pox-locking -p clarity-types -p clarity -p libsigner -p stacks-common -p stacks-codec -p clarity-cli -p stacks-cli -p stacks-inspect -p stacks-profiler -p stacks-profiler-macros --no-deps --tests --all-features -- -D warnings -Aclippy::unnecessary_lazy_evaluations"
55
clippy-stackslib = "clippy -p stackslib --no-deps -- -Aclippy::all -Wclippy::indexing_slicing -Wclippy::nonminimal_bool -Wclippy::clone_on_copy"
66

77
# Uncomment to improve performance slightly, at the cost of portability

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,24 +119,26 @@ jobs:
119119
ref: ${{ github.event.pull_request.head.sha || github.ref }}
120120
persist-credentials: false
121121

122-
# Setup the rust toolchain for specified target
122+
# Setup the rust toolchain for specified target.
123+
# Pin to a specific nightly: an unpinned `nightly` tracks the latest build
124+
# and breaks the job whenever rustc tightens lints (e.g. unused imports).
123125
- name: Setup Rust Toolchain
124126
uses: ./.github/actions/setup-rust-toolchain
125127
with:
126-
toolchain: nightly
128+
toolchain: nightly-2026-06-07
127129

128130
# Fuzz check clarity targets
129131
- name: Check fuzz targets (clarity)
130132
run: |
131-
cargo +nightly check \
133+
cargo +nightly-2026-06-07 check \
132134
--manifest-path clarity/fuzz/Cargo.toml \
133135
--bins \
134136
--locked
135137
136138
# Fuzz check stackslib targets
137139
- name: Check fuzz targets (stackslib)
138140
run: |
139-
cargo +nightly check \
141+
cargo +nightly-2026-06-07 check \
140142
--manifest-path stackslib/fuzz/Cargo.toml \
141143
--bins \
142144
--locked

0 commit comments

Comments
 (0)