Skip to content

Commit

Permalink
Merge pull request #46 from duckdblabs/add-dynamic-symbols
Browse files Browse the repository at this point in the history
Add dynamic symbols
  • Loading branch information
Tmonster authored Mar 11, 2025
2 parents 87f6aaf + cdd6971 commit 3ad8c2b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
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 }}

0 comments on commit 3ad8c2b

Please sign in to comment.