Skip to content

Commit 0d2dee2

Browse files
committed
add dispatch options
1 parent aff0335 commit 0d2dee2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/RunFuzzer.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@ name: Run Afl++ Fuzzer
22
on:
33
push:
44
workflow_dispatch:
5+
inputs:
6+
duckdbRepo:
7+
description: 'duckdb repository'
8+
required: true
9+
type: string
10+
default: 'duckdb/duckb'
11+
ref:
12+
description: 'ref'
13+
required: true
14+
type: string
15+
default: 'main'
16+
fuzzer:
17+
description: 'fuzz scenario'
18+
required: true
19+
type: choice
20+
options:
21+
- fuzz-csv-multi-param
22+
- fuzz-json-multi-param
23+
- fuzz-parquet-multi-param
24+
default: fuzz-csv-multi-param
25+
fuzzTime:
26+
description: 'fuzz time (seconds)'
27+
required: true
28+
type: number
29+
default: 3600
530

631
jobs:
732
install-aflplusplus:

0 commit comments

Comments
 (0)