File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -179,12 +179,17 @@ 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 "::save-state name=TNT_PID::$TNT_PID"
183
- post-if : process.env.STATE_TNT_PID != ''
184
- post : kill $STATE_TNT_PID
182
+ echo "::set-env name=TNT_PID::$TNT_PID"
185
183
186
184
- name : Run tests
187
185
env :
188
186
REMOTE_TARANTOOL_HOST : localhost
189
187
REMOTE_TARANTOOL_CONSOLE_PORT : 3302
190
188
run : make test
189
+
190
+ - name : Stop test Tarantool
191
+ if : ${{ always() }} && process.env.TNT_PID != ''
192
+ shell : wsl-bash_Ubuntu-20.04 {0}
193
+ run : kill $TNT_PID
194
+
195
+
You can’t perform that action at this time.
0 commit comments