Skip to content

Commit a91ca7a

Browse files
committed
ci: update tarantool version
1 parent c27a441 commit a91ca7a

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
version-check:
1010
# We need this job to run only on push with tag.
1111
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
12-
runs-on: ubuntu-24.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Check module version
1515
uses: tarantool/actions/check-module-version@master
@@ -18,7 +18,7 @@ jobs:
1818

1919
publish-scm-1:
2020
if: github.ref == 'refs/heads/master'
21-
runs-on: ubuntu-24.04
21+
runs-on: ubuntu-22.04
2222
steps:
2323
- uses: actions/checkout@v4
2424
- uses: tarantool/rocks.tarantool.org/github-action@master
@@ -29,13 +29,13 @@ jobs:
2929
publish-tag:
3030
if: startsWith(github.ref, 'refs/tags/')
3131
needs: version-check
32-
runs-on: ubuntu-24.04
32+
runs-on: ubuntu-22.04
3333
steps:
3434
- uses: actions/checkout@v4
3535

3636
- uses: tarantool/setup-tarantool@v3
3737
with:
38-
tarantool-version: '2.10'
38+
tarantool-version: '2.11'
3939
- run: echo $PWD/.rocks/bin >> $GITHUB_PATH
4040

4141
# Make a release

.github/workflows/test_on_push.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
all:
7-
runs-on: ubuntu-24.04
7+
runs-on: ubuntu-22.04
88
timeout-minutes: 10
99
env:
1010
DOWNLOAD_TOKEN: ${{ secrets.DOWNLOAD_TOKEN }}
@@ -19,6 +19,11 @@ jobs:
1919
- name: Checkout sources
2020
uses: actions/checkout@v4
2121

22+
- name: Install tarantool
23+
uses: tarantool/setup-tarantool@v3
24+
with:
25+
tarantool-version: '2.11'
26+
2227
- name: Install sdk
2328
run: make sdk
2429

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ version := scm-1
22

33
.PHONY: all doc test schema install
44

5-
BUNDLE_VERSION=2.8.4-0-g47e6bd362-r508
5+
ARCHIVE_NAME=tarantool-enterprise-sdk-gc64-2.11.5-0-r662.linux.x86_64.tar.gz
66
COMMIT_TAG = $(shell git describe)
77

88
all: doc
99
mkdir -p doc
1010

1111
sdk: Makefile
12-
wget https://tarantool:$(DOWNLOAD_TOKEN)@download.tarantool.io/enterprise/tarantool-enterprise-bundle-$(BUNDLE_VERSION).tar.gz
13-
tar -xzf tarantool-enterprise-bundle-$(BUNDLE_VERSION).tar.gz
14-
rm tarantool-enterprise-bundle-$(BUNDLE_VERSION).tar.gz
12+
wget https://tarantool:$(DOWNLOAD_TOKEN)@download.tarantool.io/enterprise/release/linux/x86_64/2.11/${ARCHIVE_NAME}
13+
tar -xzf ${ARCHIVE_NAME}
14+
rm ${ARCHIVE_NAME}
1515
mv tarantool-enterprise sdk
1616

1717
.rocks: migrations-scm-1.rockspec

0 commit comments

Comments
 (0)