File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ jobs:
58
58
- name : Clone the connector
59
59
uses : actions/checkout@v2
60
60
61
- - name : Setup tarantool ${{ matrix.tarantool }}
61
+ - name : Install Tarantool ${{ matrix.tarantool }}
62
62
if : matrix.tarantool != '2.x-latest'
63
63
uses : tarantool/setup-tarantool@v1
64
64
with :
65
65
tarantool-version : ${{ matrix.tarantool }}
66
66
67
- - name : Setup Tarantool 2.x (latest)
67
+ - name : Install latest Tarantool 2.x
68
68
if : matrix.tarantool == '2.x-latest'
69
69
run : |
70
70
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
@@ -179,7 +179,9 @@ jobs:
179
179
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
180
180
sudo apt install -y tarantool tarantool-dev
181
181
TNT_PID=$(tarantool ./test/suites/lib/tarantool_python_ci.lua > tarantool.log 2>&1 & echo $!)
182
- echo "::set-env name=TNT_PID::$TNT_PID"
182
+ rm -f ./tnt_pid
183
+ touch tnt_pid
184
+ echo $TNT_PID > ./tnt_pid
183
185
184
186
- name : Run tests
185
187
env :
@@ -190,6 +192,4 @@ jobs:
190
192
- name : Stop test Tarantool
191
193
if : ${{ always() }} && process.env.TNT_PID != ''
192
194
shell : wsl-bash_Ubuntu-20.04 {0}
193
- run : kill $TNT_PID
194
-
195
-
195
+ run : kill $(cat tnt_pid)
You can’t perform that action at this time.
0 commit comments