Skip to content

github-ci: remove Tarantool 2.10 setup workaround #187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- name: Clone the connector
uses: actions/checkout@v2

- name: Setup Tarantool ${{ matrix.tarantool }} (< 2.10)
if: matrix.tarantool != '2.x-latest' && matrix.tarantool != '2.10'
- name: Setup Tarantool ${{ matrix.tarantool }}
if: matrix.tarantool != '2.x-latest'
uses: tarantool/setup-tarantool@v1
with:
tarantool-version: ${{ matrix.tarantool }}
Expand All @@ -60,12 +60,6 @@ jobs:
curl -L https://tarantool.io/pre-release/2/installer.sh | sudo bash
sudo apt install -y tarantool tarantool-dev

- name: Setup Tarantool 2.10
if: matrix.tarantool == '2.10'
run: |
curl -L https://tarantool.io/tWsLBdI/release/2/installer.sh | bash
sudo apt install -y tarantool tarantool-dev

- name: Setup golang for the connector and tests
uses: actions/setup-go@v2
with:
Expand Down