Skip to content

Commit cc2852d

Browse files
ci: bump Tarantool versions
1 parent d9a8dc5 commit cc2852d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/check_on_push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Tarantool CE
1717
uses: tarantool/setup-tarantool@v2
1818
with:
19-
tarantool-version: '2.6'
19+
tarantool-version: '2.10'
2020

2121
- name: Setup luacheck
2222
run: tarantoolctl rocks install luacheck 0.25.0

.github/workflows/test_on_push.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
metrics-version: "0.1.8"
2626
- tarantool-version: "2.8"
2727
metrics-version: "0.10.0"
28-
- tarantool-version: "2.8"
28+
- tarantool-version: "2.10"
2929
coveralls: true
3030
metrics-version: "0.12.0"
3131
fail-fast: false
@@ -79,7 +79,7 @@ jobs:
7979
github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository
8080
strategy:
8181
matrix:
82-
tarantool-version: ["1.10", "2.8"]
82+
tarantool-version: ["1.10", "2.10"]
8383
metrics-version: ["0.12.0"]
8484
fail-fast: false
8585
runs-on: ubuntu-20.04
@@ -112,7 +112,11 @@ jobs:
112112
if: github.event_name == 'push'
113113
strategy:
114114
matrix:
115-
bundle_version: [ "1.10.11-0-gf0b0e7ecf-r422", "2.7.3-0-gdddf926c3-r422" ]
115+
tarantool-version:
116+
- folder: "1.10"
117+
bundle: "tarantool-enterprise-sdk-1.10.13-48-r523"
118+
- folder: "2.10"
119+
bundle: "tarantool-enterprise-sdk-nogc64-2.10.4-0-r523.linux.x86_64"
116120
metrics-version: ["", "0.12.0"]
117121
fail-fast: false
118122
runs-on: ubuntu-20.04
@@ -121,9 +125,9 @@ jobs:
121125

122126
- name: Install requirements for enterprise
123127
run: |
124-
curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
125-
tar -xzf tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
126-
rm -f tarantool-enterprise-bundle-${{ matrix.bundle_version }}.tar.gz
128+
curl -O -L https://tarantool:${{ secrets.DOWNLOAD_TOKEN }}@download.tarantool.io/enterprise/release/linux/x86_64/${{ matrix.tarantool-version.folder }}/${{ matrix.tarantool-version.bundle }}.tar.gz
129+
tar -xzf ${{ matrix.tarantool-version.bundle }}.tar.gz
130+
rm -f ${{ matrix.tarantool-version.bundle }}.tar.gz
127131
sudo cp tarantool-enterprise/tarantool /usr/bin/tarantool
128132
source tarantool-enterprise/env.sh
129133
tarantool --version

0 commit comments

Comments
 (0)