From 532422a5d9ac750bdd726649ef856e96576ef17f Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 17 Mar 2020 11:58:48 -0700 Subject: [PATCH] Fix CI fuzz runners --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 31d53cd738..190516ad21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -87,35 +87,35 @@ jobs: find fuzz/corpus/compile -type f \ | shuf \ | head -n 3000 \ - | xargs cargo fuzz run compile --release --debug-assertions + | xargs cargo fuzz run compile --release --debug-assertions --features binaryen env: RUST_BACKTRACE: 1 - run: | find fuzz/corpus/instantiate -type f \ | shuf \ | head -n 2000 \ - | xargs cargo fuzz run instantiate --release --debug-assertions + | xargs cargo fuzz run instantiate --release --debug-assertions --features binaryen env: RUST_BACKTRACE: 1 - run: | find fuzz/corpus/instantiate_translated -type f \ | shuf \ | head -n 1000 \ - | xargs cargo fuzz run instantiate_translated --release --debug-assertions + | xargs cargo fuzz run instantiate_translated --release --debug-assertions --features binaryen env: RUST_BACKTRACE: 1 - run: | find fuzz/corpus/api_calls -type f \ | shuf \ | head -n 100 \ - | xargs cargo fuzz run api_calls --release --debug-assertions + | xargs cargo fuzz run api_calls --release --debug-assertions --features binaryen env: RUST_BACKTRACE: 1 - run: | find fuzz/corpus/differential -type f \ | shuf \ | head -n 100 \ - | xargs cargo fuzz run differential --release --debug-assertions + | xargs cargo fuzz run differential --release --debug-assertions --features binaryen env: RUST_BACKTRACE: 1