forked from CLIUtils/CLI11
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (46 loc) · 1.21 KB
/
fuzz.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Fuzz
on:
workflow_dispatch:
push:
branches:
- main
- v*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quick_fuzz1:
name: quickfuzz1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure
run: |
cmake -S . -B build \
-DCMAKE_CXX_STANDARD=17 \
-DCLI11_SINGLE_FILE_TESTS=OFF \
-DCLI11_BUILD_EXAMPLES=OFF \
-DCLI11_FUZZ_TARGET=ON \
-DCLI11_BUILD_TESTS=OFF \
-DCLI11_BUILD_DOCS=OFF \
-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_COMPILER_FORCED=ON \
-DCMAKE_CXX_FLAGS="-g -O1 -fsanitize=fuzzer,undefined,address"
- name: Build
run: cmake --build build -j4
- name: Test_app
run: |
cd build
make QUICK_CLI11_APP_FUZZ
- name: Test_file
run: |
cd build
make QUICK_CLI11_FILE_FUZZ
- name: artifacts
if: failure()
uses: actions/upload-artifact@v3
with:
name: file_failure
path: ./build/fuzz/cli11_*_fail_artifact.txt