1
0
Fork 0
arangodb/Installation/travisCI/script.sh

30 lines
462 B
Bash
Executable File

#!/bin/bash
echo
echo '$0: setup make-system'
make setup || exit 1
echo
echo "$0: configuring ArangoDB"
./configure \
--enable-relative \
--enable-all-in-one-libev \
--enable-all-in-one-v8 \
--enable-all-in-one-icu \
|| exit 1
echo
echo "$0: compiling ArangoDB"
make -j2 || exit 1
echo
echo "$0: testing ArangoDB"
make jslint unittests-shell-server unittests-shell-server-ahuacatl unittests-http-server SKIP_RANGES=1 || exit 1
echo
echo "$0: done"