You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2016/12/02 09:57:13 UTC

[13/17] incubator-s2graph git commit: fix

fix


Project: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/commit/da2a0314
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/tree/da2a0314
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s2graph/diff/da2a0314

Branch: refs/heads/master
Commit: da2a031416c89f4a101f8f318c7cbc85ac9558ff
Parents: 342db9f
Author: Injun Song <ij...@gmail.com>
Authored: Fri Dec 2 16:52:33 2016 +0900
Committer: Injun Song <ij...@gmail.com>
Committed: Fri Dec 2 16:52:33 2016 +0900

----------------------------------------------------------------------
 .travis.yml              | 6 ++----
 .travis/install-hbase.sh | 1 -
 2 files changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/da2a0314/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 1f9a99e..3b94132 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,8 +15,6 @@ jdk:
 
 sbt_args: -J-Xmx4G -J-Xms2G -J-Xss1M
 
-services:
-  - hbase
-
 before_script:
-  - .travis/hbase.sh
+  - .travis/install-hbase.sh
+  - $HOME/hbase/bin/start-hbase.sh

http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/da2a0314/.travis/install-hbase.sh
----------------------------------------------------------------------
diff --git a/.travis/install-hbase.sh b/.travis/install-hbase.sh
index aff32ec..c47c10e 100755
--- a/.travis/install-hbase.sh
+++ b/.travis/install-hbase.sh
@@ -5,5 +5,4 @@ set -e
 if [ ! -d $HOME/hbase/bin ]; then
   cd $HOME && wget -q -O - http://mirror.navercorp.com/apache/hbase/stable/hbase-$HBASE_VERSION-bin.tar.gz | tar xz
   ln -s $HOME/hbase-$HBASE_VERSION $HOME/hbase
-  $HOME/hbase/bin/start-hbase.sh
 fi