Skip to content

Commit

Permalink
ci: add step with killing tarantool after tests
Browse files Browse the repository at this point in the history
There were still tarantool processes running after all tests were completed.
After the patch all not killed instances of tarantool will be killed in CI
pipeline.
  • Loading branch information
themilchenko authored and psergee committed Jul 30, 2024
1 parent 279baac commit 162b33a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/full-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,12 @@ jobs:
ETCD_TT_BIN=${ETCD_PATH}etcd;
pkill -SIGINT -f ${ETCD_TT_BIN} || true
- name: Kill tarantool, if it was left
if: always()
run: |
TARANTOOL_BIN=${GITHUB_WORKSPACE}/bin/tarantool;
pkill -SIGINT -f ${TARANTOOL_BIN} || true
# ee suffix means that the job runs ee integration tests.
full-ci-macOS-ee:
if: |
Expand Down

0 comments on commit 162b33a

Please sign in to comment.