mirror of https://gitee.com/bigwinds/arangodb
removed script.sh
This commit is contained in:
parent
07f34cc048
commit
57d3127150
|
@ -46,8 +46,7 @@ install:
|
||||||
- export CXXFLAGS="-B$HOME/bin/gold $CXXFLAGS"
|
- export CXXFLAGS="-B$HOME/bin/gold $CXXFLAGS"
|
||||||
|
|
||||||
before_script: "bash -c Installation/travisCI/before_script.sh"
|
before_script: "bash -c Installation/travisCI/before_script.sh"
|
||||||
script:
|
script: - "bash -c Installation/travisCI/build.sh"
|
||||||
- "bash -c Installation/travisCI/build.sh"
|
|
||||||
after_failure: "bash -c Installation/travisCI/after_failure.sh"
|
after_failure: "bash -c Installation/travisCI/after_failure.sh"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
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: testing ArangoDB"
|
|
||||||
|
|
||||||
ulimit -c unlimited -S # enable core files
|
|
||||||
make jslint unittests-shell-server unittests-shell-server-aql unittests-http-server SKIP_RANGES=1 || exit 1
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "$0: done"
|
|
Loading…
Reference in New Issue