Skip to content

Commit 7c04487

Browse files
committed
fix(ci): replace debug-dylink with lind-logging in clippy feature flags
The debug-dylink feature was removed as part of the logging system migration. Update the remaining references in the Makefile lint target and lint.yml CI workflow so clippy invocations no longer request the non-existent feature.
1 parent 64b5ef9 commit 7c04487

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# See `cargo clippy` and `cargo check` for available options
4949
cargo clippy \
5050
--manifest-path src/lind-boot/Cargo.toml \
51-
--features "disable_signals secure lind_debug debug-dylink debug-grate-calls fdtables-dashmaparray" \
51+
--features "disable_signals secure lind_debug lind-logging debug-grate-calls fdtables-dashmaparray" \
5252
--keep-going \
5353
-- \
5454
-A warnings \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ lint:
249249
# and pin to the default fdtables impl.
250250
cargo clippy \
251251
--manifest-path src/lind-boot/Cargo.toml \
252-
--features "disable_signals secure lind_debug debug-dylink debug-grate-calls fdtables-dashmaparray" \
252+
--features "disable_signals secure lind_debug lind-logging debug-grate-calls fdtables-dashmaparray" \
253253
--keep-going \
254254
-- \
255255
-A warnings \

0 commit comments

Comments
 (0)