We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd5c77 commit d72381eCopy full SHA for d72381e
.travis.yml
@@ -16,4 +16,4 @@ script:
16
- phpunit --configuration ./tests/phpunit.xml
17
18
after_script:
19
- - killall -9 arangod || true
+ - ./tests/travis/teardown_arangodb.sh
tests/travis/teardown_arangodb.sh
@@ -0,0 +1,9 @@
1
+
2
+ARCH=$(arch)
3
+if [ "$ARCH" == "x86_64" ]; then
4
+ ARANGOD="arangod_x86_64"
5
+else
6
+ ARANGOD="arangod"
7
+fi
8
+echo "killing arangod binary ${ARANGOD}"
9
+killall -9 "${ARANGOD}" || true
0 commit comments