Skip to content

Commit 9be985e

Browse files
committed
CI: Add fuzz to CRATES
The `fuzz` crate should be included in the `CRATES` variable. In `run_task` it is only built (not tested) using `cargo --locked build`. When the `fuzz` crate is used in the `bench` job all the dead code combined with the `deny` attribute causes the `bench` job to fail. Because we have a lint job we can soften the restriction to warnings wit no loss of cover.
1 parent 61a028a commit 9be985e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contrib/crates.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# disable verify unused vars, despite the fact that they are used when sourced
55
# shellcheck disable=SC2034
66

7-
# Crates in this workspace to test (excl. fuzz an integration-tests).
8-
CRATES=(".") # Non-workspaces don't have crates.
7+
# Crates in this workspace to test.
8+
CRATES=("." "fuzz")

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
#![deny(non_camel_case_types)]
8383
#![deny(non_snake_case)]
8484
#![deny(unused_mut)]
85-
#![deny(dead_code)]
85+
#![warn(dead_code)]
8686
#![deny(unused_imports)]
8787
#![deny(missing_docs)]
8888
// Clippy lints that we have disabled

0 commit comments

Comments
 (0)