Skip to content

Commit

Permalink
CI/Docker: update to libduckdb 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 4, 2024
1 parent 79f6f3e commit c578e9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_24.04/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ RUN curl -LO -fsS https://apache.jfrog.io/artifactory/arrow/ubuntu/pool/jammy/ma
&& dpkg -i libadbc-driver-snowflake-dev_14-1_amd64.deb

# Install libduckdb
RUN curl -LO -fsS https://github.com/duckdb/duckdb/releases/download/v1.1.2/libduckdb-linux-amd64.zip \
RUN curl -LO -fsS https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip \
&& unzip libduckdb-linux-amd64.zip libduckdb.so \
&& mv libduckdb.so /usr/lib/x86_64-linux-gnu \
&& rm -f libduckdb-linux-amd64.zip
2 changes: 1 addition & 1 deletion docker/ubuntu-full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ RUN if test "$(uname -p)" = "x86_64"; then \

# Install libduckdb
RUN if test "$(uname -p)" = "x86_64"; then \
curl -LO -fsS https://github.com/duckdb/duckdb/releases/download/v1.1.2/libduckdb-linux-amd64.zip \
curl -LO -fsS https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip \
&& unzip libduckdb-linux-amd64.zip libduckdb.so \
&& mv libduckdb.so /usr/lib/x86_64-linux-gnu \
&& rm -f libduckdb-linux-amd64.zip; \
Expand Down

0 comments on commit c578e9d

Please sign in to comment.