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

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


The following commit(s) were added to refs/heads/master by this push:
     new fa87f84  [CALCITE-4299] Test against Go 1.14 and 1.15
fa87f84 is described below

commit fa87f84dd6492de4aeedb005875f11549d48a895
Author: Francis Chuang <[email protected]>
AuthorDate: Thu Oct 1 19:53:03 2020 +1000

    [CALCITE-4299] Test against Go 1.14 and 1.15
---
 .github/workflows/tests.yaml | 2 +-
 docker-compose.yml           | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index f7d6668..5693fde 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -5,7 +5,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        go_version: [1.13, 1.14]
+        go_version: [1.14, 1.15]
         database_image:
           - boostport/hbase-phoenix-all-in-one:1.3-4.13
           - boostport/hbase-phoenix-all-in-one:1.4-4.14
diff --git a/docker-compose.yml b/docker-compose.yml
index a123fac..9712713 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -23,7 +23,7 @@ services:
     command: -u jdbc:hsqldb:mem:public
 
   test:
-    image: golang:1.14-alpine
+    image: golang:1.15-alpine
     command: sh -c "apk --no-cache --no-progress add gcc git musl-dev; export 
AVATICA_FLAVOR=HSQLDB && go test -v ./...; export AVATICA_FLAVOR=PHOENIX && go 
test -v ./..."
     working_dir: /source
     environment:
@@ -37,7 +37,7 @@ services:
       - hsqldb
 
   dev:
-    image: golang:1.14-alpine
+    image: golang:1.15-alpine
     command: sh -c "apk --no-cache --no-progress add build-base git; go 
install github.com/unchartedsoftware/witch; cd /source; witch --cmd=\"export 
AVATICA_FLAVOR=HSQLDB && go test -v ./...; export AVATICA_FLAVOR=PHOENIX && go 
test -v ./...\" --watch=\"*.mod,**/*.go\""
     environment:
       PHOENIX_HOST: http://phoenix:8765
@@ -88,7 +88,7 @@ services:
       - .:/source
 
   compile-protobuf:
-    image: golang:1.14-alpine
+    image: golang:1.15-alpine
     working_dir: /source
     command: sh -c "apk --no-cache --no-progress add bash; ./docker.sh 
compile-protobuf"
     environment:

Reply via email to