Skip to content

Commit b4011ed

Browse files
committed
ci: remove sdk
1 parent 480b90f commit b4011ed

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

.github/workflows/test_on_push.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,9 @@ jobs:
2424
with:
2525
tarantool-version: '2.11'
2626

27-
- name: Install sdk
28-
run: make sdk
29-
3027
- name: Install rocks
3128
shell: bash
32-
run: source sdk/env.sh && make .rocks
29+
run: make .rocks
3330

3431
- name: Run tests
3532
run: make test

Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,11 @@ version := scm-1
22

33
.PHONY: all doc test schema install
44

5-
ARCHIVE_NAME=tarantool-enterprise-sdk-gc64-2.11.7-0-r691.linux.x86_64.tar.gz
65
COMMIT_TAG = $(shell git describe)
76

87
all: doc
98
mkdir -p doc
109

11-
sdk: Makefile
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}
15-
mv tarantool-enterprise sdk
16-
1710
.rocks: migrations-scm-1.rockspec
1811
$(shell) ./deps.sh
1912

@@ -22,7 +15,7 @@ lint:
2215

2316
test: lint
2417
rm -f luacov*
25-
.rocks/bin/luatest --verbose --shuffle all --coverage
18+
.rocks/bin/luatest --verbose
2619
.rocks/bin/luacov . && grep -A999 '^Summary' tmp/luacov.report.out
2720

2821
push-scm-1:

0 commit comments

Comments
 (0)