Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
schedule:
# At the end of every day
- cron: "0 0 * * *"
workflow_dispatch:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added this so we can run it manually if we ever find ourselves trying to debug it again and don't have to wait for the specific time it runs


jobs:
run-fuzzers:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = ["."]
[dependencies]
arbitrary = { version = "1.3.0", features = ["derive"] }
cairo-vm = { path = "../vm", features = ["test_utils"] }
honggfuzz = "0.5.55"
honggfuzz = "=0.5.58"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the CI we are using cargo hfuzz 0.5.58 so it has to match with honggfuzz

libfuzzer-sys = "0.4"
num-bigint = "0.4"
pyo3 = { version = "0.19.2", features = ["extension-module"] }
Expand Down
Loading