Skip to content

Commit 162b33a

Browse files
themilchenkopsergee
authored andcommitted
ci: add step with killing tarantool after tests
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.
1 parent 279baac commit 162b33a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/full-ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,12 @@ jobs:
206206
ETCD_TT_BIN=${ETCD_PATH}etcd;
207207
pkill -SIGINT -f ${ETCD_TT_BIN} || true
208208
209+
- name: Kill tarantool, if it was left
210+
if: always()
211+
run: |
212+
TARANTOOL_BIN=${GITHUB_WORKSPACE}/bin/tarantool;
213+
pkill -SIGINT -f ${TARANTOOL_BIN} || true
214+
209215
# ee suffix means that the job runs ee integration tests.
210216
full-ci-macOS-ee:
211217
if: |

0 commit comments

Comments
 (0)