Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to cargo-fuzz #261

Merged
merged 5 commits into from
Feb 17, 2025
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
16 changes: 8 additions & 8 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ decode_program,
parse_human,
]
steps:
- name: Install test dependencies
run: sudo apt-get update -y && sudo apt-get install -y binutils-dev libunwind8-dev libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc libiberty-dev

- name: Checkout Crate
uses: actions/checkout@v4

Expand All @@ -38,15 +35,18 @@ parse_human,
fuzz/target
target
key: cache-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}

- name: Install Toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@master
with:
toolchain: '1.65.0'
toolchain: nightly-2024-07-01
components: "llvm-tools-preview"

- name: Install Dependencies
run: cargo update && cargo update -p cc --precise 1.0.83 && cargo install cargo-fuzz

- name: Run Fuzz Target
run: |
echo "Using RUSTFLAGS $RUSTFLAGS"
cd fuzz && cargo update && cargo update -p cc --precise 1.0.83 && ./fuzz.sh "${{ matrix.fuzz_target }}"
run: ./fuzz/fuzz.sh "${{ matrix.fuzz_target }}"

- name: Prepare Artifact
run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- stable
- beta
- nightly
- 1.63.0
- 1.78.0
steps:
- name: Checkout Crate
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Cargo.lock
#fuzz
fuzz/hfuzz_target
fuzz/hfuzz_workspace
fuzz/artifacts
fuzz/corpus

#IntelliJ project files
.idea
Expand Down
Loading
Loading