1
0
Fork 0

make all parts of the travis builds one script again - it didn't offer benefits.

This commit is contained in:
Willi Goesgens 2015-02-10 10:29:05 +01:00
parent bf36f1dafe
commit 0e52adc100
4 changed files with 13 additions and 26 deletions

View File

@ -46,6 +46,4 @@ install:
before_script: "bash -c Installation/travisCI/before_script.sh"
script:
- "bash -c Installation/travisCI/build.sh"
- "bash -c Installation/travisCI/jslint.sh"
- "bash -c Installation/travisCI/tests.sh"
after_failure: "bash -c Installation/travisCI/after_failure.sh"

View File

@ -9,7 +9,7 @@ wget -q -O - "https://www.arangodb.com/support-files/travisCI/precompiled-librar
echo
echo '$0: setup make-system'
make setup
make setup || exit 1
echo
echo "$0: configuring ArangoDB"
@ -18,7 +18,18 @@ echo "$0: configuring ArangoDB"
echo
echo "$0: compiling ArangoDB"
make -j1
make -j1 || exit 1
echo
echo "$0: linting ArangoDB JS"
ulimit -c unlimited -S # enable core files
make jslint || exit 1
echo
echo "$0: testing ArangoDB"
make unittests-shell-server unittests-shell-server-aql unittests-http-server SKIP_RANGES=1 || exit 1
echo
echo "$0: done"

View File

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

View File

@ -1,11 +0,0 @@
#!/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
echo
echo "$0: done"