Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Oct 19, 2023
1 parent c4b80fc commit 340bda7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
crate: cargo-fuzz
use-tool-cache: true

- run: ./scripts/fuzz.sh
- run: .scripts/fuzz.sh

tests:
name: Tests
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Tests
run: ./scripts/tests.sh
run: .scripts/tests.sh
4 changes: 2 additions & 2 deletions .scripts/fuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -euxo pipefail

cargo fuzz run --fuzz-dir mop-blocks-fuzz dr_matrix -- -max_len=32 -runs=10000
cargo fuzz run --fuzz-dir mop-blocks-fuzz gp -- -max_len=32 -runs=10000
cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir mop-fuzz dr_matrix -- -max_len=32 -runs=10000
cargo fuzz run --features libfuzzer-sys/link_libfuzzer --fuzz-dir mop-fuzz gp -- -max_len=32 -runs=10000
2 changes: 2 additions & 0 deletions mop-fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[[bin]]
name = "dr_matrix"
path = "dr_matrix.rs"
required-features = ["libfuzzer-sys/link_libfuzzer"]

[[bin]]
name = "gp"
path = "gp.rs"
required-features = ["libfuzzer-sys/link_libfuzzer"]

[dependencies]
arbitrary = { default-features = false, features = ["derive"], version = "1.0" }
Expand Down

0 comments on commit 340bda7

Please sign in to comment.