Add JeremyEspresso/swift-h3 to community bindings (#1018) #1051
This file contains hidden or 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
name: test-fuzzer | |
on: | |
push: | |
branches: [master, stable-*] | |
pull_request: | |
branches: [master, stable-*] | |
jobs: | |
afl-tests: | |
name: AFL Fuzzer ${{ matrix.compiler }} | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.compiler }} | |
strategy: | |
matrix: | |
compiler: [clang, gcc] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure build | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug .. | |
- name: Build | |
run: | | |
cd build | |
make fuzzers | |
- name: Run fuzzers once | |
run: | | |
cd build | |
for fuzzer in bin/fuzzer*; do | |
echo $fuzzer | |
$fuzzer --generate inputData | |
$fuzzer inputData | |
done | |
libfuzzer-test: | |
name: LibFuzzer ${{ matrix.compiler }} | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.compiler }} | |
strategy: | |
matrix: | |
compiler: [clang] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure build | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_LIBFUZZER=ON .. | |
- name: Build | |
run: | | |
cd build | |
make fuzzers | |
- name: Run fuzzers once | |
run: | | |
cd build | |
for fuzzer in bin/fuzzer*; do | |
echo $fuzzer | |
$fuzzer -runs=100000 -max_total_time=60 -timeout=300 | |
done |