Skip to content

Commit

Permalink
Merge pull request #119 from carlopi/v111
Browse files Browse the repository at this point in the history
Bump default to DuckDB v1.1.1
  • Loading branch information
carlopi committed Sep 24, 2024
2 parents 46d78c6 + fdcb140 commit 5322500
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
COMMUNITY_EXTENSION_VCPKG_URL: ${{ steps.parse.outputs.COMMUNITY_EXTENSION_VCPKG_URL == '' && 'https://github.com/microsoft/vcpkg.git' || steps.parse.outputs.COMMUNITY_EXTENSION_VCPKG_URL }}
COMMUNITY_EXTENSION_VCPKG_COMMIT: ${{ steps.parse.outputs.COMMUNITY_EXTENSION_VCPKG_COMMIT == '' && 'a1a1cbc975abf909a6c8985a6a2b8fe20bbd9bd6' || steps.parse.outputs.COMMUNITY_EXTENSION_VCPKG_COMMIT }}
env:
DUCKDB_LATEST_STABLE: 'v1.1.0'
DUCKDB_VERSION: ${{ inputs.duckdb_version || 'v1.1.0' }}
DUCKDB_LATEST_STABLE: 'v1.1.1'
DUCKDB_VERSION: ${{ inputs.duckdb_version || 'v1.1.1' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
uses: duckdb/extension-ci-tools/.github/workflows/_extension_distribution.yml@main
if: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_NAME != '' }}
with:
duckdb_version: ${{ inputs.duckdb_version || 'v1.1.0' }}
duckdb_version: ${{ inputs.duckdb_version || 'v1.1.1' }}
ci_tools_version: 'main'
exclude_archs: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_EXCLUDE_PLATFORMS }}
extra_toolchains: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_REQUIRES_TOOLCHAINS }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
secrets: inherit
with:
deploy_latest: true
duckdb_version: ${{ inputs.duckdb_version || 'v1.1.0' }}
duckdb_version: ${{ inputs.duckdb_version || 'v1.1.1' }}
exclude_archs: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_EXCLUDE_PLATFORMS }}
extension_name: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_NAME }}
repository: ${{ needs.prepare.outputs.COMMUNITY_EXTENSION_GITHUB }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Set up DuckDB
run: |
wget https://github.com/duckdb/duckdb/releases/download/v1.1.0/duckdb_cli-linux-amd64.zip
wget https://github.com/duckdb/duckdb/releases/download/v1.1.1/duckdb_cli-linux-amd64.zip
unzip duckdb_cli-linux-amd64.zip
chmod +x duckdb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Set up DuckDB
run: |
wget https://github.com/duckdb/duckdb/releases/download/v1.1.0/duckdb_cli-linux-amd64.zip
wget https://github.com/duckdb/duckdb/releases/download/v1.1.1/duckdb_cli-linux-amd64.zip
unzip duckdb_cli-linux-amd64.zip
chmod +x duckdb
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/download-artifact@v3
if: ${{ inputs.extension_name != '' }}
with:
name: ${{ inputs.extension_name }}-v1.1.0-extension-linux_amd64_gcc4
name: ${{ inputs.extension_name }}-v1.1.1-extension-linux_amd64_gcc4
path: build/downloaded

- name: Install downloaded extension
Expand Down

0 comments on commit 5322500

Please sign in to comment.