Skip to content

Commit 7faa44c

Browse files
authored
Merge pull request #364 from fb64/v1.5-variegata
Update V1.5-variegata
2 parents ec20f45 + 0990368 commit 7faa44c

3 files changed

Lines changed: 16 additions & 7 deletions

File tree

.github/workflows/TestCITools.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
extension_name: quack
2121
override_repository: duckdb/extension-template
2222
override_ref: main
23-
duckdb_version: v1.5.1
23+
duckdb_version: v1.5.2
2424
override_ci_tools_repository: ${{ github.repository }}
2525
ci_tools_version: ${{ github.sha }}
2626
extra_toolchains: 'python3'
@@ -32,7 +32,7 @@ jobs:
3232
extension_name: capi_quack
3333
override_repository: duckdb/extension-template-c
3434
override_ref: main
35-
duckdb_version: v1.5.1
35+
duckdb_version: v1.5.2
3636
override_ci_tools_repository: ${{ github.repository }}
3737
ci_tools_version: ${{ github.sha }}
3838
extra_toolchains: 'python3;unixodbc'
@@ -50,7 +50,7 @@ jobs:
5050
extension_name: quack
5151
override_repository: duckdb/extension-template
5252
override_ref: main
53-
duckdb_version: v1.5.1
53+
duckdb_version: v1.5.2
5454
override_ci_tools_repository: ${{ github.repository }}
5555
ci_tools_version: ${{ github.sha }}
5656
extra_toolchains: 'parser_tools;fortran;omp;go;python3;downgraded_aws_cli;'
@@ -73,7 +73,7 @@ jobs:
7373
extension_name: rusty_quack
7474
override_repository: duckdb/extension-template-rs
7575
override_ref: main
76-
duckdb_version: v1.5.1
76+
duckdb_version: v1.5.2
7777
override_ci_tools_repository: ${{ github.repository }}
7878
ci_tools_version: ${{ github.sha }}
7979
extra_toolchains: 'rust;python3'
@@ -92,7 +92,7 @@ jobs:
9292
override_ref: main
9393
override_ci_tools_repository: ${{ github.repository }}
9494
ci_tools_version: ${{ github.sha }}
95-
duckdb_version: v1.5.1
95+
duckdb_version: v1.5.2
9696
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw;windows_amd64'
9797
extra_toolchains: 'rust'
9898
save_cache: ${{ github.event_name != 'pull_request' }}

.github/workflows/_extension_distribution.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,6 @@ jobs:
763763
matrix: ${{fromJson(needs.generate_matrix.outputs.windows_matrix)}}
764764
env:
765765
# VCPKG config
766-
VCPKG_TOOLCHAIN_PATH: ${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake
767766
VCPKG_TARGET_TRIPLET: ${{ matrix.vcpkg_target_triplet }}
768767
VCPKG_HOST_TRIPLET: ${{ matrix.vcpkg_host_triplet }}
769768
VCPKG_OVERLAY_PORTS: ${{ github.workspace }}/extension-ci-tools/vcpkg_ports
@@ -915,11 +914,20 @@ jobs:
915914
run: |
916915
make set_duckdb_tag
917916
917+
- name: Setup shorter path for vcpkg
918+
run: |
919+
$basePath = Split-Path -Path (Split-path -Path $env:GITHUB_WORKSPACE -Parent) -Parent
920+
$vcpkgRoot = "$basePath/vcpkg"
921+
echo "VCPKG_WINDOWS_ROOT=$vcpkgRoot" >> $env:GITHUB_ENV
922+
echo "VCPKG_TOOLCHAIN_PATH=$vcpkgRoot/scripts/buildsystems/vcpkg.cmake" >> $env:GITHUB_ENV
923+
shell: pwsh
924+
918925
- name: Setup vcpkg
919926
uses: lukka/run-vcpkg@v11.1
920927
with:
921928
vcpkgGitCommitId: ${{ inputs.vcpkg_commit }}
922929
vcpkgGitURL: ${{ inputs.vcpkg_url }}
930+
vcpkgDirectory: ${{ env.VCPKG_WINDOWS_ROOT }}
923931

924932
- name: Inject extra extension config
925933
if: ${{ inputs.extra_extension_config }}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ DuckDB's [Extension Template](https://github.com/duckdb/extension-template/actio
77
| Extension-ci-tools Branch | DuckDB target version | Actively maintained? |
88
|---------------------------|-----------------------|----------------------|
99
| main | main | yes |
10-
| v1.5.1 | v1.5.1 | yes |
10+
| v1.5.2 | v1.5.2 | yes |
11+
| v1.5.1 | v1.5.1 | no |
1112
| v1.5.0 | v1.5.0 | no |
1213
| v1.4.4 | v1.4.4 | yes |
1314
| v1.4.3 | v1.4.3 | no |

0 commit comments

Comments
 (0)