mirror of https://gitee.com/bigwinds/arangodb
try to properly shutdown after build
This commit is contained in:
parent
bf81a5901b
commit
65317def3c
|
@ -42,6 +42,7 @@ install:
|
|||
before_script: "bash -c Installation/travisCI/before_script.sh"
|
||||
script: "bash -c Installation/travisCI/build.sh"
|
||||
after_failure: "bash -c Installation/travisCI/after_failure.sh"
|
||||
after_script: "bash -c Installation/travisCI/after_script.sh"
|
||||
|
||||
notifications:
|
||||
slack:
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
echo "killing arango* binaries"
|
||||
killall -9 "arangod" || true
|
||||
killall -9 "arangosh" || true
|
Loading…
Reference in New Issue