Skip to content

Merge pull request #709 from SparkiDev/wolfssl_meson #342

Merge pull request #709 from SparkiDev/wolfssl_meson

Merge pull request #709 from SparkiDev/wolfssl_meson #342

Workflow file for this run

# This will verify that the fuzzer builds but will not run it
name: Fuzzer build check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install clang
run: sudo apt install clang
- name: Configure with fuzzing
run: CC=clang CXX=clang++ CXXFLAGS="-fsanitize=fuzzer-no-link,address,undefined -g -O3" CFLAGS="-fsanitize=fuzzer-no-link,address,undefined -g -O3" LDFLAGS="-fsanitize=fuzzer-no-link,address,undefined" ./configure
- name: Build
run: LIBFUZZER="-fsanitize=fuzzer" make srtp-fuzzer