script for download/run hbase
Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/95bd2ec1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/95bd2ec1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/95bd2ec1 Branch: refs/heads/master Commit: 95bd2ec1d85c764a441944280fe102f76413bce9 Parents: 124e92a Author: Injun Song <[email protected]> Authored: Wed Nov 30 14:58:39 2016 +0900 Committer: Injun Song <[email protected]> Committed: Wed Nov 30 14:58:39 2016 +0900 ---------------------------------------------------------------------- .travis.yml | 3 +++ .travis/hbase.sh | 5 +++++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/95bd2ec1/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 5004c9f..a68657f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,3 +11,6 @@ sbt_args: -J-Xmx4G -J-Xms2G -J-Xss1M services: - hbase + +before_script: + - .travis/hbase.sh http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/95bd2ec1/.travis/hbase.sh ---------------------------------------------------------------------- diff --git a/.travis/hbase.sh b/.travis/hbase.sh new file mode 100755 index 0000000..c04d0e3 --- /dev/null +++ b/.travis/hbase.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +wget -q -O - https://archive.cloudera.com/cdh5/cdh/5/hbase-1.0.0-cdh5.4.9.tar.gz | tar xvz +cd hbase-1.0.0-cdh5.4.9 +bin/start-hbase.sh
