Skip to content

Commit

Permalink
Update fuzzers and add building them to CI (#2983)
Browse files Browse the repository at this point in the history
* update fuzzers for latest changes

* build fuzzers in CI workflow

* move fuzz builds before examples, oops

* use explicit versioning
  • Loading branch information
addisoncrump authored Jun 2, 2023
1 parent 9367ee2 commit 6b595e7
Show file tree
Hide file tree
Showing 7 changed files with 571 additions and 102 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ jobs:
override: true
profile: minimal
components: rustfmt, clippy
- uses: actions-rs/[email protected]
with:
crate: cargo-fuzz
version: latest
- uses: Swatinem/rust-cache@v2
with:
key: misc
Expand All @@ -91,6 +95,8 @@ jobs:
run: cargo doc -v --document-private-items --all-features
- name: Build
run: cargo build --all-targets --quiet --profile ci
- name: Build fuzzers
run: cargo fuzz build -s none
- run: cd boa_examples
- name: Build examples
run: cargo build --quiet --profile ci
Expand Down
Loading

0 comments on commit 6b595e7

Please sign in to comment.