Skip to content

bump extension-ci-tools to v1.3.0 #87

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jun 2, 2025
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
10 changes: 5 additions & 5 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
with:
extension_name: aws
duckdb_version: main
ci_tools_version: main
duckdb_version: v1.3.0
ci_tools_version: v1.3.0
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64_mingw' # Doesn't work anyway: env local file or env access possible

duckdb-stable-deploy:
name: Deploy extension binaries
needs: duckdb-stable-build
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.2.2
uses: duckdb/extension-ci-tools/.github/workflows/_extension_deploy.yml@v1.3.0
secrets: inherit
with:
extension_name: aws
duckdb_version: main
ci_tools_version: main
duckdb_version: v1.3.0
ci_tools_version: v1.3.0
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64_mingw' # Doesn't work anyway: env local file or env access possible
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 166 files
2 changes: 1 addition & 1 deletion extension_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ duckdb_extension_load(aws

duckdb_extension_load(httpfs
GIT_URL https://github.com/duckdb/duckdb-httpfs
GIT_TAG 4cf8a592cda330a9acc4c39756434f0e08ed1512
GIT_TAG 7ce5308ed8fe48b593538dbd54344a2fc0695bc7
INCLUDE_DIR extension/httpfs/include
)
4 changes: 2 additions & 2 deletions test/sql/env/aws_secret_refresh.test
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ FROM "s3://test-bucket-ceiveran/lololasdklasdjk.csv";

# Secret refresh has been triggered
query II
SELECT log_level, message FROM duckdb_logs WHERE type='httpfs.SecretRefresh'
SELECT log_level, message FROM duckdb_logs WHERE message like '%Successfully refreshed secret%'
----
INFO <REGEX>:Successfully refreshed secret: env_test, new key_id:.*
INFO <REGEX>:Successfully refreshed secret: env_test, new key_id:.*
Loading