Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dynamic symbols #46

Merged
merged 2 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/build_fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Fuzzer
on:
workflow_call:
inputs:
git_url:
git_url:
required: true
type: string
git_tag:
Expand All @@ -18,7 +18,7 @@ on:

jobs:
build-duckdb:
name: Build
name: Build
runs-on: ubuntu-latest
timeout-minutes: ${{ inputs.timeout-minutes }}
outputs:
Expand All @@ -31,6 +31,7 @@ jobs:
BUILD_PARQUET: 1
BUILD_JEMALLOC: 1
CRASH_ON_ASSERT: 1
EXPORT_DYNAMIC_SYMBOLS: 1
GEN: ninja

steps:
Expand All @@ -45,14 +46,14 @@ jobs:

- name: Setup Ccache
uses: hendrikmuhs/ccache-action@main

- id: find-hash
run: echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: create build sqlsmith extension file
shell: bash
run: |
echo "duckdb_extension_load(sqlsmith
echo "duckdb_extension_load(sqlsmith
GIT_URL https://github.com/${{ inputs.git_url }}
GIT_TAG ${{ inputs.git_tag }}
)" > sqlsmith.cmake
Expand All @@ -65,4 +66,4 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: duckdb
path: build/debug/duckdb
path: build/debug/duckdb
2 changes: 1 addition & 1 deletion .github/workflows/cifuzz-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
enable_verification: false
repo: ${{ github.repository }}
secrets:
DUCKDB_HASH: ${{ needs.build-duckdb.outputs.duckdb-hash }}
DUCKDB_HASH: ${{ needs.build-duckdb.outputs.hash }}