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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
java-version: 25
- run: ./build-image.sh
- run: ./mvnw dependency:go-offline -B -V
- run: ./mvnw install -B
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ EOF

ARG TARGETARCH

ENV WASI_SDK_VERSION=24
ENV WASI_SDK_VERSION=30
ENV WASI_SDK_PATH=/opt/wasi-sdk
ENV WASI_SDK_SYSROOT=${WASI_SDK_PATH}/share/wasi-sysroot
ENV WASI_SDK_LIBDIR=${WASI_SDK_SYSROOT}/lib/wasm32-wasi
ENV WASMTIME_VERSION=26.0.0
ENV WIZER_VERSION=7.0.5
ENV WASI_VFS_VERSION=0.5.4
ENV WASMTIME_VERSION=42.0.1
ENV WIZER_VERSION=10.0.0
ENV WASI_VFS_VERSION=0.6.2
ENV PYTHON_PATH=/opt/wasi-python
ENV PYTHON_PYLIB=${PYTHON_PATH}/lib/python3.13
ENV PYTHON_SITE=${PYTHON_PYLIB}/site-packages
Expand Down Expand Up @@ -50,7 +50,7 @@ EOF

RUN <<EOF
mkdir -p /build/zlib
curl -L https://www.zlib.net/zlib-1.3.1.tar.gz | \
curl -L https://www.zlib.net/zlib-1.3.2.tar.gz | \
tar -xz --strip-components 1 -C /build/zlib
EOF

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.airlift</groupId>
<artifactId>airbase</artifactId>
<version>294</version>
<version>356</version>
</parent>

<groupId>io.trino</groupId>
Expand Down Expand Up @@ -35,23 +35,23 @@
</scm>

<properties>
<project.build.targetJdk>21</project.build.targetJdk>
<project.build.targetJdk>25</project.build.targetJdk>
<air.maven.version>3.8.8</air.maven.version>
<air.check.skip-spotbugs>true</air.check.skip-spotbugs>
<air.check.skip-pmd>true</air.check.skip-pmd>
<air.check.skip-jacoco>true</air.check.skip-jacoco>
<air.javadoc.lint>all,-missing</air.javadoc.lint>
<air.release.preparation-goals>clean verify -DskipTests</air.release.preparation-goals>

<dep.chicory.version>1.5.1</dep.chicory.version>
<dep.chicory.version>1.7.2</dep.chicory.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>bom</artifactId>
<version>1.5.1</version>
<version>${dep.chicory.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down