Skip to content

Commit 70b551f

Browse files
Nightly python builds (duckdb#5)
Add workflow for external dispatch
1 parent 251d8f1 commit 70b551f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Builds triggered externally by DuckDB
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
duckdb-sha:
6+
type: string
7+
description: The DuckDB SHA to build against
8+
required: true
9+
force_version:
10+
type: string
11+
description: Force version (vX.Y.Z-((rc|post)N))
12+
required: false
13+
publish_to_pypi:
14+
type: boolean
15+
description: Publish packages to PyPI?
16+
required: true
17+
default: false
18+
19+
jobs:
20+
externally_triggered_build:
21+
name: Build and test releases
22+
uses: ./.github/workflows/pypi_packaging.yml
23+
with:
24+
minimal: false
25+
testsuite: all
26+
git_ref: ${{ github.ref }}
27+
duckdb_git_ref: ${{ inputs.duckdb-sha }}
28+
force_version: ${{ inputs.force_version }}

0 commit comments

Comments
 (0)