Skip to content
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
4 changes: 2 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- **Build system**: CMake (3.5+) with DuckDB's extension CI tools (`extension-ci-tools/`)
- **Dependency manager**: vcpkg (managed via `vcpkg.json`)
- **Key dependencies**: `nlohmann-json`, `curl`, `gtest` (see `vcpkg.json`)
- **DuckDB version targeted**: v1.5.0 (see `MainDistributionPipeline.yml`)
- **DuckDB version targeted**: v1.5.1 (see `MainDistributionPipeline.yml`)

Comment on lines 9 to 12
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file now states the targeted DuckDB version is v1.5.1, but other repository docs still mention v1.5.0 (e.g., README.md:83 and custom-instructions/repo/.github/copilot-instructions.md:11,115). To avoid conflicting guidance, update the remaining references (or clarify which one is authoritative).

Copilot uses AI. Check for mistakes.
## Repository Layout

Expand Down Expand Up @@ -112,7 +112,7 @@ Always run `clang-format` on modified C++ files before committing. The CI pipeli

Defined in `.github/workflows/MainDistributionPipeline.yml`:

- **duckdb-stable-build**: Builds extension binaries for all platforms using DuckDB v1.5.0 CI tools.
- **duckdb-stable-build**: Builds extension binaries for all platforms using DuckDB v1.5.1 CI tools.
- **code-quality-check**: Runs `clang-format` and `clang-tidy` checks.

Triggered on push to `main`/`dev` when `src/`, `test/`, `CMakeLists.txt`, or workflow files change, and on `workflow_dispatch`.
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
name: Main Extension Distribution Pipeline
on:
pull_request:
push:
branches:
- main
Expand All @@ -24,17 +25,17 @@ concurrency:
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5.0
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@v1.5.1
with:
duckdb_version: v1.5.0
ci_tools_version: v1.5.0
duckdb_version: v1.5.1
ci_tools_version: v1.5.1
Comment on lines 26 to +31
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title indicates DuckDB is being bumped to v1.5.1, but this PR only updates the CI workflow inputs (and the referenced extension-ci-tools workflow tag). If the intent is to bump the repository’s DuckDB submodule/pinned source as well, that change is missing; otherwise consider adjusting the PR title/description to reflect that this is a CI/tooling bump only.

Copilot uses AI. Check for mistakes.
extension_name: flock

code-quality-check:
name: Code Quality Check
uses: duckdb/extension-ci-tools/.github/workflows/_extension_code_quality.yml@v1.5.0
uses: duckdb/extension-ci-tools/.github/workflows/_extension_code_quality.yml@v1.5.1
with:
duckdb_version: v1.5.0
ci_tools_version: v1.5.0
duckdb_version: v1.5.1
ci_tools_version: v1.5.1
extension_name: flock
format_checks: "format;tidy"
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 297 files
Loading