switch to stable toolchain #590
Workflow file for this run
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
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
workflow_dispatch: | |
name: Fuzzing Test | |
env: | |
AS: nasm | |
AR_x86_64_unknown_none: llvm-ar | |
CC_x86_64_unknown_none: clang | |
RUST_TOOLCHAIN: 1.83.0 | |
TOOLCHAIN_PROFILE: minimal | |
jobs: | |
test: | |
name: Fuzzing Test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rust-src, llvm-tools-preview | |
- name: Add `x86_64-unknown-none` target | |
run: rustup target add x86_64-unknown-none | |
- name: install NASM | |
uses: ilammy/setup-nasm@v1 | |
- name: Install AFL (Linux) | |
run: cargo install cargo-afl | |
if: runner.os == 'Linux' | |
- name: Install Cargo-Fuzz (Linux) | |
run: cargo +stable install cargo-fuzz | |
if: runner.os == 'Linux' | |
- name: Preparation work | |
run: bash sh_script/preparation.sh | |
- name: Run all afl fuzzing test cases (Linux) | |
run: make afl-test | |
- name: Run all libfuzzer fuzzing test cases (Linux) | |
run: make libfuzzer-test |