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

francischuang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git

commit 9797df6ec90a2d3a124985191030eb0175758031
Author: Francis Chuang <[email protected]>
AuthorDate: Mon Dec 4 10:11:35 2023 +1100

    [CALCITE-6151] Test against Go 1.20 and 1.21
---
 .github/workflows/tests.yaml | 2 +-
 docker-compose.yml           | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 01ac752..9e09d27 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -25,7 +25,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        go_version: ["1.19", "1.20"]
+        go_version: ["1.20", "1.21"]
         database:
           - [phoenix, 1.3-4.13]
           - [phoenix, 1.4-4.14]
diff --git a/docker-compose.yml b/docker-compose.yml
index ed1894e..9f54e59 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -23,7 +23,7 @@ services:
     command: -u jdbc:hsqldb:mem:public
 
   test:
-    image: golang:${GO_VERSION:-1.20}
+    image: golang:${GO_VERSION:-1.21}
     command: sh -c "export AVATICA_FLAVOR=HSQLDB && go test -v ./...; export 
AVATICA_FLAVOR=PHOENIX && go test -v ./..."
     working_dir: /source
     environment:
@@ -37,7 +37,7 @@ services:
       - hsqldb
 
   test-phoenix:
-    image: golang:${GO_VERSION:-1.20}
+    image: golang:${GO_VERSION:-1.21}
     command: go test -v ./...
     working_dir: /source
     environment:
@@ -50,7 +50,7 @@ services:
       - phoenix
 
   test-hsqldb:
-    image: golang:${GO_VERSION:-1.20}
+    image: golang:${GO_VERSION:-1.21}
     command: go test -v ./...
     working_dir: /source
     environment:
@@ -100,7 +100,7 @@ services:
       - .:/source
 
   compile-protobuf:
-    image: golang:1.20
+    image: golang:1.21
     working_dir: /source
     command: sh -c "./docker.sh compile-protobuf"
     environment:

Reply via email to