Skip to content

Reuse external workflows in Fuzzer CI #36

Reuse external workflows in Fuzzer CI

Reuse external workflows in Fuzzer CI #36

name: test-fuzzer-ci-still-works
on:
workflow_dispatch:
pull_request:
push:
branches:
- '**'
- '!main'
jobs:
build-duckdb:
name: Build DuckDB
# should be a valid tag, branch name or commit. After it gets merged, we can replace it with the branch name
uses: duckdblabs/duckdb-fuzzer-ci/.github/workflows/reusable_build.yml@a718b91bfe729290ad0525722cd77651416d2046
with:
git_url: ${{ github.actor }}
git_tag: ${{ github.ref_name }}
timeout-minutes: 120
fuzzer:
name: Fuzzer
needs:
- build-duckdb
strategy:
fail-fast: false
matrix:
fuzzer: [duckfuzz, sqlsmith, duckfuzz_functions]
data: [emptyalltypes]
uses: duckdblabs/duckdb-fuzzer-ci/.github/workflows/reusable_fuzzer.yml@a718b91bfe729290ad0525722cd77651416d2046

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

View workflow run for this annotation

GitHub Actions / .github/workflows/test-fuzzer-ci-still-works.yml

Invalid workflow file

error parsing called workflow ".github/workflows/test-fuzzer-ci-still-works.yml" -> "duckdblabs/duckdb-fuzzer-ci/.github/workflows/reusable_fuzzer.yml@a718b91bfe729290ad0525722cd77651416d2046" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
fuzzer: ${{ matrix.fuzzer }}
data: ${{ matrix.data }}
timeout-minutes: 20
max_queries: 10