mirror of https://gitee.com/bigwinds/arangodb
make all parts of the travis builds one script again - it didn't offer benefits.
This commit is contained in:
parent
bf36f1dafe
commit
0e52adc100
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
|
@ -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"
|
Loading…
Reference in New Issue