Skip to content

Commit 3c5a39f

Browse files
committed
github-ci: add Tarantool 2.10 to regular workflow
Follows up #96
1 parent 98d362c commit 3c5a39f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/testing.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
1212
strategy:
1313
matrix:
14-
tarantool-version: ['1.10', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '2.8']
14+
tarantool-version: ['1.10', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '2.8', '2.10']
1515
fail-fast: false
1616
runs-on: [ubuntu-latest]
1717
steps:
@@ -23,11 +23,18 @@ jobs:
2323
# for running tests.
2424
submodules: recursive
2525

26-
- name: Setup Tarantool
26+
- name: Setup Tarantool (~= 2.10)
27+
if: matrix.tarantool-version != '2.10'
2728
uses: tarantool/setup-tarantool@v1
2829
with:
2930
tarantool-version: ${{ matrix.tarantool-version }}
3031

32+
- name: Setup Tarantool (2.10)
33+
if: matrix.tarantool-version == '2.10'
34+
run: |
35+
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
36+
sudo apt install -y tarantool tarantool-dev
37+
3138
- name: Install build requirements
3239
run: sudo apt-get -y install libsasl2-dev libevent-dev
3340

0 commit comments

Comments
 (0)