Skip to content

Commit 410f2a7

Browse files
committed
Merge branch 'v1.3-ossivalis'
2 parents 096f1b0 + 1cd39bb commit 410f2a7

File tree

15 files changed

+328
-371
lines changed

15 files changed

+328
-371
lines changed

.github/workflows/cleanup_pypi.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@ on:
33
workflow_call:
44
inputs:
55
environment:
6-
description: CI environment to run in (test.pypi or production.pypi)
6+
description: CI environment to run in (pypi-test or pypi-prod-nightly)
77
type: string
88
required: true
9+
secrets:
10+
PYPI_CLEANUP_OTP:
11+
description: PyPI OTP
12+
required: true
13+
PYPI_CLEANUP_PASSWORD:
14+
description: PyPI password
15+
required: true
916
workflow_dispatch:
1017
inputs:
1118
dry-run:
@@ -16,10 +23,9 @@ on:
1623
description: CI environment to run in
1724
type: choice
1825
required: true
19-
default: test.pypi
2026
options:
21-
- test.pypi
22-
- production.pypi
27+
- pypi-prod-nightly
28+
- pypi-test
2329

2430
jobs:
2531
cleanup_pypi:

.github/workflows/on_external_dispatch.yml

Lines changed: 0 additions & 126 deletions
This file was deleted.

.github/workflows/on_push_postrelease.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/packaging.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Packaging
2-
run-name: Build ${{ inputs.minimal && 'minimal set of' || 'all' }} packages (version=${{ inputs.force-version != '' && inputs.force-version || 'dev' }}, tests=${{ inputs.testsuite }}, ref=${{ inputs.git-ref }}, duckdb ref=${{ inputs.duckdb-git-ref }})
2+
run-name: Build ${{ inputs.minimal && 'minimal set of' || 'all' }} packages (version=${{ inputs.set-version != '' && inputs.set-version || 'dev' }}, tests=${{ inputs.testsuite }}, ref=${{ inputs.git-ref }}, duckdb ref=${{ inputs.duckdb-git-ref }})
33
on:
44
workflow_dispatch:
55
inputs:
@@ -25,7 +25,7 @@ on:
2525
description: Git ref of DuckDB
2626
required: true
2727
default: refs/heads/main
28-
force-version:
28+
set-version:
2929
type: string
3030
description: Force version (vX.Y.Z-((rc|post)N))
3131
required: false
@@ -48,7 +48,7 @@ on:
4848
type: string
4949
description: Git ref of DuckDB
5050
required: false
51-
force-version:
51+
set-version:
5252
description: Force version (vX.Y.Z-((rc|post)N))
5353
required: false
5454
type: string
@@ -82,8 +82,8 @@ jobs:
8282
git checkout ${{ inputs.duckdb-git-ref }}
8383
8484
- name: Set OVERRIDE_GIT_DESCRIBE
85-
if: ${{ inputs.force-version != '' }}
86-
run: echo "OVERRIDE_GIT_DESCRIBE=${{ inputs.force-version }}" >> $GITHUB_ENV
85+
if: ${{ inputs.set-version != '' }}
86+
run: echo "OVERRIDE_GIT_DESCRIBE=${{ inputs.set-version }}" >> $GITHUB_ENV
8787

8888
- name: Install Astral UV
8989
uses: astral-sh/setup-uv@v6
@@ -149,7 +149,6 @@ jobs:
149149
uv run -v pytest ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }} --verbose --ignore=./tests/stubs
150150
151151
steps:
152-
153152
- name: Checkout DuckDB Python
154153
uses: actions/checkout@v4
155154
with:
@@ -166,8 +165,8 @@ jobs:
166165
167166
# Make sure that OVERRIDE_GIT_DESCRIBE is propagated to cibuildwhel's env, also when it's running linux builds
168167
- name: Set OVERRIDE_GIT_DESCRIBE
169-
if: ${{ inputs.force-version != '' }}
170-
run: echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.force-version }}" >> $GITHUB_ENV
168+
if: ${{ inputs.set-version != '' }}
169+
run: echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.set-version }}" >> $GITHUB_ENV
171170

172171
# Install Astral UV, which will be used as build-frontend for cibuildwheel
173172
- uses: astral-sh/setup-uv@v6

0 commit comments

Comments
 (0)