Skip to content

Commit

Permalink
Fixed arangodb.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nikordaris committed Feb 24, 2016
1 parent 53c5e8b commit 816259f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ language: node_js
sudo: false

node_js:
- '0.10'
- '0.12'
- 'stable'

before_install:
Expand Down
9 changes: 4 additions & 5 deletions arangodb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR

VERSION=2.8.2
VERSION=2.8.3
NAME=ArangoDB-$VERSION

if [ ! -d "$DIR/$NAME" ]; then
# download ArangoDB
wget http://www.arangodb.org/travisCI/$NAME.tar.gz
wget https://www.arangodb.com/repositories/travisCI/$NAME.tar.gz
tar zxf $NAME.tar.gz
fi

Expand All @@ -22,13 +22,12 @@ mkdir ${TMP_DIR}

${ARANGODB_DIR}/bin/arangod \
--database.directory ${TMP_DIR} \
--log.file ${TMP_DIR}/${NAME}.log \
--configuration none \
--server.endpoint tcp://127.0.0.1:8529 \
--javascript.startup-directory ${ARANGODB_DIR}/js \
--javascript.modules-path ${ARANGODB_DIR}/js/server/modules:${ARANGODB_DIR}/js/common/modules \
--javascript.action-directory ${ARANGODB_DIR}/js/actions/system \
--javascript.app-path ${TMP_DIR}/${NAME}/apps \
--database.maximal-journal-size 1048576 \
--server.disable-admin-interface true \
--server.disable-authentication true \
--javascript.gc-interval 1 &

Expand Down

0 comments on commit 816259f

Please sign in to comment.