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
commit c4e2727d37815d2997dad45a0b7aa1bd5dd96529 Author: Francis Chuang <[email protected]> AuthorDate: Sun May 12 21:44:56 2019 +1000 [CALCITE-3044] Test against Avatica-1.15.0 and simplify alpine dependencies --- .travis.yml | 3 ++- docker-compose.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ee041a1..34fcf86 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,7 +46,8 @@ env: - AVATICA_FLAVOR=HSQLDB IMAGE=f21global/calcite-avatica:1.12.0-hypersql GO111MODULE=on - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.13.0 GO111MODULE=on - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.14.0 GO111MODULE=on - - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.14.0 GO111MODULE=off + - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.15.0 GO111MODULE=on + - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.15.0 GO111MODULE=off before_install: - if [ $GO111MODULE == "off" ]; then diff --git a/docker-compose.yml b/docker-compose.yml index 7b38f4c..e0bda70 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,12 +19,12 @@ services: image: boostport/hbase-phoenix-all-in-one:2.0-5.0 hsqldb: - image: apache/calcite-avatica-hypersql:1.14.0 + image: apache/calcite-avatica-hypersql:1.15.0 command: -u jdbc:hsqldb:mem:public test: image: golang:1.12-alpine - command: sh -c "apk --no-cache --no-progress add build-base git; export AVATICA_FLAVOR=HSQLDB && go test -v ./...; export AVATICA_FLAVOR=PHOENIX && go test -v ./..." + 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: PHOENIX_HOST: http://phoenix:8765
