Skip to content
Open
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/pxf-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ concurrency:
env:
JAVA_VERSION: "11"
JAVA_HOME: "/usr/lib/jvm/java-11-openjdk"
GO_VERSION: "1.24"
GO_VERSION: "1.25"
GPHOME: "/usr/local/cloudberry-db"
CLOUDBERRY_VERSION: "main"
PXF_HOME: "/usr/local/pxf"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To build PXF, you must have:
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
```

4. Go (1.24 or later)
4. Go (1.25 or later)

You can download and install Go via [Go downloads page](https://golang.org/dl/).

Expand Down
2 changes: 1 addition & 1 deletion automation/pxf_regress/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module regress

go 1.24
go 1.25
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN curl -fsSL "https://services.gradle.org/distributions/gradle-${GRADLE_VERSIO
ENV GRADLE_HOME="/opt/gradle-${GRADLE_VERSION}"

# Go toolchain for building pxf_regress inside the container
ARG GO_VERSION=1.24.0
ARG GO_VERSION=1.25.0
RUN ARCH=$(uname -m) && \
case "$ARCH" in \
x86_64) GARCH=amd64 ;; \
Expand Down
2 changes: 1 addition & 1 deletion ci/singlecluster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ENV HADOOP_VERSION=3.1.2
ENV HIVE_VERSION=3.1.3
ENV HBASE_VERSION=2.3.7
ENV TEZ_VERSION=0.9.2
ENV GO_VERSION=1.24.0
ENV GO_VERSION=1.25.0

# checksums from archive.apache.org
ENV HADOOP_SHA512="0e0ee817c89b3c4eb761eca7f16640742a83b0e99b6fda26c1bee2baabedad93aab86e252bf5f1e2381c6d464bc4003d10c7cc0f61b2062f4c59732ca24d1bd9"
Expand Down
2 changes: 1 addition & 1 deletion cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Getting Started

1. Ensure you are set up for PXF development by following the README.md at the root of this repository. This tool requires Go version 1.24 or higher. Follow the directions [here](https://golang.org/doc/) to get the language set up.
1. Ensure you are set up for PXF development by following the README.md at the root of this repository. This tool requires Go version 1.25 or higher. Follow the directions [here](https://golang.org/doc/) to get the language set up.

1. Run the tests
```
Expand Down
2 changes: 1 addition & 1 deletion cli/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module pxf-cli

go 1.24
go 1.25

require (
github.com/apache/cloudberry-go-libs v1.0.12-0.20250910014224-fc376e8a1056
Expand Down
Loading