Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Commit 431c3d0

Browse files
fuzz is gone for now
1 parent f0af38a commit 431c3d0

2 files changed

Lines changed: 1 addition & 27 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,6 @@ env:
1212
RUST_BACKTRACE: 1
1313

1414
jobs:
15-
rust-fuzz:
16-
name: Rust / Fuzz Smoke Tests
17-
runs-on: depot-ubuntu-24.04-16
18-
steps:
19-
- uses: actions/checkout@v4
20-
21-
- name: Install Rust
22-
uses: dtolnay/rust-toolchain@stable
23-
24-
- name: Cache cargo
25-
uses: Swatinem/rust-cache@v2
26-
27-
- name: Run fuzz harnesses (test mode)
28-
run: cargo xtask fuzz
29-
3015
rust-clippy:
3116
name: Rust / Clippy
3217
runs-on: depot-ubuntu-24.04-16

xtask/src/main.rs

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct Cli {
1818
#[derive(Facet)]
1919
#[repr(u8)]
2020
enum Commands {
21-
/// Run all CI checks locally (test, clippy, fmt, doc, coverage, miri, fuzz)
21+
/// Run all CI checks locally (test, clippy, fmt, doc, coverage, miri)
2222
Ci,
2323
/// Run all tests (workspace)
2424
Test,
@@ -96,19 +96,11 @@ fn run() -> Result<(), Box<dyn std::error::Error>> {
9696
cmd!(sh, "cargo test --workspace").run()?;
9797
}
9898

99-
println!("\n=== Running fuzz harnesses (test mode) ===");
100-
sh.change_dir(workspace_root.join("fuzz"));
101-
cmd!(sh, "cargo test").run()?;
102-
10399
println!("\n=== All tests passed ===");
104100
}
105101
Commands::Clippy => {
106102
println!("=== Running clippy ===");
107103
cmd!(sh, "cargo clippy --workspace --all-targets -- -D warnings").run()?;
108-
109-
println!("\n=== Clippy on fuzz crate ===");
110-
sh.change_dir(workspace_root.join("fuzz"));
111-
cmd!(sh, "cargo clippy -- -D warnings").run()?;
112104
}
113105
Commands::Fmt { fix } => {
114106
if fix {
@@ -140,9 +132,6 @@ fn run() -> Result<(), Box<dyn std::error::Error>> {
140132
println!("\n>>> cargo xtask miri");
141133
cmd!(sh, "cargo xtask miri").run()?;
142134

143-
println!("\n>>> cargo xtask fuzz");
144-
cmd!(sh, "cargo xtask fuzz").run()?;
145-
146135
println!("\n=== All CI checks passed ===");
147136
}
148137
Commands::Doc => {

0 commit comments

Comments
 (0)