1
0
Fork 0

Merge branch 'devel' of https://github.com/triAGENS/ArangoDB into devel

This commit is contained in:
Jan Steemann 2015-01-07 18:15:43 +01:00
commit ff0a8cd1c8
5 changed files with 20 additions and 11 deletions

View File

@ -2,6 +2,7 @@
echo "$0: checking for core file"
COREFILE=$(find . -maxdepth 1 -name "core*" | head -n 1)
if [[ -f "$COREFILE" ]]; then
echo "$0: found a core file"
gdb -c "$COREFILE" bin/arangod -ex "thread apply all bt" -ex "set pagination 0" -batch;

View File

@ -1,13 +1,16 @@
#!/bin/bash
set -e
d='UnitTests/HttpInterface'
echo
echo "$0: switching into ${d}"
cd "${d}" || exit 1
cd "${d}"
echo
echo "$0: installing bundler"
gem install bundler || exit 1
gem install bundler
echo
echo "$0: executing bundle"
bundle || exit 1
bundle

View File

@ -1,21 +1,24 @@
#!/bin/bash
set -e
echo
echo '$0: loading precompiled libraries'
wget -q -O - "https://www.arangodb.com/support-files/travisCI/precompiled-libraries.tar.gz" | tar xzvf -
echo
echo '$0: setup make-system'
make setup || exit 1
make setup
echo
echo "$0: configuring ArangoDB"
# V8 needs lib realtime:
./configure \
--enable-relative \
|| exit 1
./configure --enable-relative
echo
echo "$0: compiling ArangoDB"
make -j2 || exit 1
make -j2
echo
echo "$0: done"

View File

@ -1,10 +1,11 @@
#!/bin/bash
set -e
echo
echo "$0: linting ArangoDB JS"
ulimit -c unlimited -S # enable core files
make jslint || exit 1
make jslint
echo
echo "$0: done"

View File

@ -1,10 +1,11 @@
#!/bin/bash
set -e
echo
echo "$0: testing ArangoDB"
ulimit -c unlimited -S # enable core files
make unittests-shell-server unittests-shell-server-aql unittests-http-server SKIP_RANGES=1 || exit 1
make unittests-shell-server unittests-shell-server-aql unittests-http-server SKIP_RANGES=1
echo
echo "$0: done"