Skip to content

Commit e113800

Browse files
committed
2.10
1 parent 2a85a2e commit e113800

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/testing.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
- name: Clone the connector
3838
uses: actions/checkout@v2
3939

40-
- name: Setup Tarantool ${{ matrix.tarantool }}
41-
if: matrix.tarantool != '2.x-latest'
40+
- name: Setup Tarantool (< 2.10)
41+
if: matrix.tarantool != '2.x-latest' && matrix.tarantool != '2.10'
4242
uses: tarantool/setup-tarantool@v1
4343
with:
4444
tarantool-version: ${{ matrix.tarantool }}
@@ -49,6 +49,12 @@ jobs:
4949
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
5050
sudo apt install -y tarantool tarantool-dev
5151
52+
- name: Setup Tarantool 2.10
53+
if: matrix.tarantool == '2.10'
54+
run: |
55+
curl -L https://tarantool.io/tWsLBdI/release/2/installer.sh | bash
56+
sudo apt install -y tarantool tarantool-dev
57+
5258
- name: Setup golang for the connector and tests
5359
uses: actions/setup-go@v2
5460
with:

0 commit comments

Comments
 (0)