-
-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update fuzzers and add building them to CI (#2983)
* update fuzzers for latest changes * build fuzzers in CI workflow * move fuzz builds before examples, oops * use explicit versioning
- Loading branch information
1 parent
9367ee2
commit 6b595e7
Showing
7 changed files
with
571 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
Oops, something went wrong.