mirror of https://gitee.com/bigwinds/arangodb
25 lines
356 B
Bash
Executable File
25 lines
356 B
Bash
Executable File
#!/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
|
|
|
|
echo
|
|
echo "$0: configuring ArangoDB"
|
|
./configure --enable-relative
|
|
|
|
echo
|
|
echo "$0: compiling ArangoDB"
|
|
|
|
make -j2
|
|
|
|
echo
|
|
echo "$0: done"
|