This is an automated email from the ASF dual-hosted git repository.

rxl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 310d480  set default go version to 1.13 in CI related files (#692)
310d480 is described below

commit 310d480485cd3e945ad991aade915f3d6a353115
Author: Eugene R <reug...@gmail.com>
AuthorDate: Sun Dec 26 05:10:36 2021 +0200

    set default go version to 1.13 in CI related files (#692)
    
    Set the default go version to 1.13 in the CI related files as per the 
minimum version requirements.
---
 Dockerfile   | 2 +-
 docker-ci.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 6a2fb29..401a246 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@
 # under the License.
 #
 
-ARG GO_VERSION=golang:1.12
+ARG GO_VERSION=golang:1.13
 FROM apachepulsar/pulsar:latest as pulsar
 FROM $GO_VERSION as go
 
diff --git a/docker-ci.sh b/docker-ci.sh
index 74a57c1..200cc50 100755
--- a/docker-ci.sh
+++ b/docker-ci.sh
@@ -25,7 +25,7 @@ cd ${SRC_DIR}
 
 IMAGE_NAME=pulsar-client-go-test:latest
 
-GO_VERSION=${1:-1.12}
+GO_VERSION=${1:-1.13}
 docker rmi --force ${IMAGE_NAME} || true
 docker rmi --force apachepulsar/pulsar:latest || true
 docker build -t ${IMAGE_NAME} --build-arg GO_VERSION="golang:${GO_VERSION}" .

Reply via email to