generated from duckdb/extension-template
-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (42 loc) · 1.12 KB
/
test-fuzzer-ci-still-works.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
name: test-fuzzer-ci-still-works
on:
workflow_dispatch:
pull_request:
push:
branches:
- '**'
- '!main'
jobs:
build-duckdb:
name: Build DuckDB
uses: duckdblabs/duckdb-fuzzer-ci/.github/workflows/build_fuzzer.yml@main
with:
git_url: ${{ github.actor }}/duckdb_sqlsmith
git_tag: ${{ github.head_ref }}
timeout-minutes: 120
fuzzer:
name: Fuzzer
needs:
- build-duckdb
strategy:
fail-fast: false
matrix:
fuzzer: [duckfuzz, sqlsmith, duckfuzz_functions]
data: [emptyalltypes]
enable_verification: [true, false]
exclude:
- enable_verification: true
fuzzer: sqlsmith
- enable_verification: true
fuzzer: duckfuzz_functions
uses: duckdblabs/duckdb-fuzzer-ci/.github/workflows/fuzz_duckdb.yml@main
with:
fuzzer: ${{ matrix.fuzzer }}
data: ${{ matrix.data }}
timeout-minutes: 20
max_queries: 10
no-git-checks: True
enable_verification: ${{ matrix.enable_verification }}
secrets:
FUZZEROFDUCKSKEY: 'fake_key'
DUCKDB_HASH: 'fake_hash'