1
0
Fork 0

try to properly shutdown after build

This commit is contained in:
jsteemann 2017-02-10 15:23:05 +01:00
parent bf81a5901b
commit 65317def3c
2 changed files with 5 additions and 0 deletions

View File

@ -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:

View File

@ -0,0 +1,4 @@
echo "killing arango* binaries"
killall -9 "arangod" || true
killall -9 "arangosh" || true