Skip to content

Commit 802c84a

Browse files
well ok
1 parent aa7174d commit 802c84a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/testing.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ jobs:
5858
- name: Clone the connector
5959
uses: actions/checkout@v2
6060

61-
- name: Setup tarantool ${{ matrix.tarantool }}
61+
- name: Install Tarantool ${{ matrix.tarantool }}
6262
if: matrix.tarantool != '2.x-latest'
6363
uses: tarantool/setup-tarantool@v1
6464
with:
6565
tarantool-version: ${{ matrix.tarantool }}
6666

67-
- name: Setup Tarantool 2.x (latest)
67+
- name: Install latest Tarantool 2.x
6868
if: matrix.tarantool == '2.x-latest'
6969
run: |
7070
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
@@ -179,7 +179,9 @@ jobs:
179179
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
180180
sudo apt install -y tarantool tarantool-dev
181181
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
183185
184186
- name: Run tests
185187
env:
@@ -190,6 +192,4 @@ jobs:
190192
- name: Stop test Tarantool
191193
if: ${{ always() }} && process.env.TNT_PID != ''
192194
shell: wsl-bash_Ubuntu-20.04 {0}
193-
run: kill $TNT_PID
194-
195-
195+
run: kill $(cat tnt_pid)

0 commit comments

Comments
 (0)