Skip to content

Commit

Permalink
github-ci: add Tarantool 2.10 to regular workflow
Browse files Browse the repository at this point in the history
Follows up #96
  • Loading branch information
ligurio committed Apr 6, 2022
1 parent bb87ef3 commit cdb28b0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
tarantool-version: ['1.10', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '2.8']
tarantool-version: ['1.10', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '2.8', '2.x-latest']
fail-fast: false
runs-on: [ubuntu-latest]
steps:
Expand All @@ -23,11 +23,18 @@ jobs:
# for running tests.
submodules: recursive

- name: Setup Tarantool
- name: Setup Tarantool (version is not equal to latest 2.x)
if: matrix.tarantool-version != '2.x-latest'
uses: tarantool/setup-tarantool@v1
with:
tarantool-version: ${{ matrix.tarantool-version }}

- name: Setup Tarantool 2.x (latest)
if: matrix.tarantool-version == '2.x-latest'
run: |
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
sudo apt install -y tarantool tarantool-dev
- name: Install build requirements
run: sudo apt-get -y install libsasl2-dev libevent-dev

Expand Down

0 comments on commit cdb28b0

Please sign in to comment.