Skip to content

use correct reusable workflows #55

use correct reusable workflows

use correct reusable workflows #55

name: test-fuzzer-ci-still-works
on:
workflow_dispatch:
pull_request:
push:
branches:
- '**'
- '!main'
jobs:
get-branch-name:
name: boop
runs-on: ubuntu-latest
steps:
- name: Get branch get-branch-name
shell: bash
run: |
echo "head ref ="
echo ${{ github.head_ref }}
echo "ref ="
echo ${{ github.ref }}
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
echo "Actions repo"
echo ${{ github.action_repository }}
echo "doot"
echo ${{ github.workflow_ref }}
echo "mayboot"
echo ${{ github.workflow_sha }}
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.sha }}
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
enable_verification: ${{ matrix.enable_verification }}