Skip to content

Commit 2874777

Browse files
authored
Switch to check for fuzz targets (#12151)
We seem to be exceeding the available disk space limit on github actions so try to cut down on disk space usage. Locally this drops from ~20G usage to ~6G so hopefully that's enough headroom for now...
1 parent 43d94e5 commit 2874777

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -635,11 +635,11 @@ jobs:
635635
- run: sudo apt-get update && sudo apt install -y ocaml-nox ocamlbuild ocaml-findlib libzarith-ocaml-dev
636636
- run: cargo fetch
637637
working-directory: ./fuzz
638-
- run: cargo fuzz build --dev
639-
- run: cargo fuzz build --dev --fuzz-dir ./cranelift/isle/fuzz
640-
- run: cargo fuzz build --dev --fuzz-dir ./crates/environ/fuzz --features component-model
641-
- run: cargo fuzz build --dev --fuzz-dir ./cranelift/assembler-x64/fuzz
642-
- run: cargo fuzz build --dev --fuzz-dir ./crates/wizer/fuzz
638+
- run: cargo fuzz check --dev
639+
- run: cargo fuzz check --dev --fuzz-dir ./cranelift/isle/fuzz
640+
- run: cargo fuzz check --dev --fuzz-dir ./crates/environ/fuzz --features component-model
641+
- run: cargo fuzz check --dev --fuzz-dir ./cranelift/assembler-x64/fuzz
642+
- run: cargo fuzz check --dev --fuzz-dir ./crates/wizer/fuzz
643643

644644
# Perform all tests of the c-api
645645
test_capi:

0 commit comments

Comments
 (0)