Skip to content
Closed
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
23 changes: 23 additions & 0 deletions .github/workflows/on_external_dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Builds triggered externally by DuckDB
on:
workflow_dispatch:
inputs:
duckdb-sha:
type: string
description: The DuckDB SHA to build against
required: true
force_version:
type: string
description: Force version (vX.Y.Z-((rc|post)N))
required: false

jobs:
externally_triggered_build:
name: Build and test releases
uses: ./.github/workflows/pypi_packaging.yml
with:
minimal: false
testsuite: all
git_ref: ${{ github.ref }}
duckdb_git_ref: ${{ inputs.duckdb-sha }}
force_version: ${{ inputs.force_version }}
Loading