mirror of https://gitee.com/bigwinds/arangodb
Split Travis build into several steps, so we can fold them in the Travis UI.
This commit is contained in:
parent
58e52e6a0c
commit
b4ad28dff4
|
@ -27,7 +27,10 @@ install:
|
|||
- sudo apt-get -y install gdb
|
||||
|
||||
before_script: "bash -c Installation/travisCI/before_script.sh"
|
||||
script: "bash -c Installation/travisCI/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"
|
||||
branches:
|
||||
only:
|
||||
|
|
|
@ -20,11 +20,5 @@ echo "$0: compiling ArangoDB"
|
|||
|
||||
make -j2 || exit 1
|
||||
|
||||
echo
|
||||
echo "$0: testing ArangoDB"
|
||||
|
||||
ulimit -c unlimited -S # enable core files
|
||||
make jslint unittests-shell-server unittests-shell-server-ahuacatl unittests-shell-server-aql unittests-http-server SKIP_RANGES=1 || exit 1
|
||||
|
||||
echo
|
||||
echo "$0: done"
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo
|
||||
echo "$0: linting ArangoDB JS"
|
||||
|
||||
ulimit -c unlimited -S # enable core files
|
||||
make jslint || exit 1
|
||||
|
||||
echo
|
||||
echo "$0: done"
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo
|
||||
echo "$0: testing ArangoDB"
|
||||
|
||||
ulimit -c unlimited -S # enable core files
|
||||
make unittests-shell-server unittests-shell-server-ahuacatl unittests-shell-server-aql unittests-http-server SKIP_RANGES=1 || exit 1
|
||||
|
||||
echo
|
||||
echo "$0: done"
|
Loading…
Reference in New Issue