mirror of https://gitee.com/bigwinds/arangodb
30 lines
455 B
Bash
Executable File
30 lines
455 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 unittests-shell-server unittests-shell-server-ahuacatl unittests-http-server SKIP_RANGES=1 || exit 1
|
|
|
|
echo
|
|
echo "$0: done"
|