Repository: calcite-avatica-go
Updated Branches:
  refs/heads/master c2484c645 -> 7891426fd


[CALCITE-2258] Add .travis.yml


Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/commit/7891426f
Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/tree/7891426f
Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/diff/7891426f

Branch: refs/heads/master
Commit: 7891426fd9e839e592c12fea7633191e6f8a342e
Parents: c2484c6
Author: Kevin Risden <kris...@apache.org>
Authored: Sun Apr 15 13:55:42 2018 -0500
Committer: Kevin Risden <kris...@apache.org>
Committed: Sun Apr 15 21:21:19 2018 -0500

----------------------------------------------------------------------
 .travis.yml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite-avatica-go/blob/7891426f/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..feb6007
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,54 @@
+# Configuration file for Travis continuous integration.
+# See https://travis-ci.org/apache/calcite-avatica-go
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to you under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+language: go
+
+branches:
+  only:
+    - master
+    - /^branch-.*$/
+    - /^[0-9]+-.*$/
+
+go:
+  - "1.10.x"
+
+sudo: required
+services:
+  - docker
+
+env:
+  global:
+  - AVATICA_IMAGE=boostport/hbase-phoenix-all-in-one:1.3-4.13
+  - AVATICA_HOST=http://localhost:8765
+
+before_install:
+  - go get -u github.com/golang/dep/cmd/dep
+  - dep ensure -v
+  - docker pull $AVATICA_IMAGE
+  - docker run -d -p 8765:8765 $AVATICA_IMAGE
+  - docker ps -a
+
+install:
+  - go build
+
+script:
+  - go test -cover -v ./...
+
+git:
+  depth: 10000
+# End .travis.yml

Reply via email to