Skip to content

Commit 43b15fc

Browse files
committed
Merge remote-tracking branch 'origin/devel' into devel
2 parents 58f9309 + d72381e commit 43b15fc

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ before_script:
1414

1515
script:
1616
- phpunit --configuration ./tests/phpunit.xml
17+
18+
after_script:
19+
- ./tests/travis/teardown_arangodb.sh

tests/travis/teardown_arangodb.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)