Skip to content

fix propagation of duckdb has between jobs #18

fix propagation of duckdb has between jobs

fix propagation of duckdb has between jobs #18

Workflow file for this run

name: cifuzz-basic
on:
workflow_dispatch:
push:
branches:
- '**'
- '!main'
paths-ignore:
- '**.md'
jobs:
build-duckdb:
name: Build DuckDB
uses: ./.github/workflows/build_fuzzer.yml
with:
git_url: duckdb/duckdb-sqlsmith
git_tag: main
timeout-minutes: 120
fuzzer:
name: Fuzzer
needs:
- build-duckdb
strategy:
fail-fast: false
matrix:
fuzzer: [duckfuzz, sqlsmith]
data: [alltypes, tpch, emptyalltypes]
exclude:
- fuzzer: sqlsmith # this one usually fails due to a memory leak
- data: tpch
uses: ./.github/workflows/fuzz_duckdb.yml
with:
fuzzer: ${{ matrix.fuzzer }}
data: ${{ matrix.data }}
timeout-minutes: 120
max_queries: 10
no-git-checks: true
enable_verification: false
repo: ${{ github.repository }}
secrets:
DUCKDB_HASH: ${{ needs.build-duckdb.outputs.hash }}