Skip to content

use correct reusable workflows #94

use correct reusable workflows

use correct reusable workflows #94

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

Check failure on line 34 in .github/workflows/test-fuzzer-ci-still-works.yml

View workflow run for this annotation

GitHub Actions / test-fuzzer-ci-still-works

Invalid workflow file

The workflow is not valid. .github/workflows/test-fuzzer-ci-still-works.yml (Line: 34, Col: 11): Input repo is required, but not provided while calling.
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'