Skip to content

Commit 44bc2e2

Browse files
committed
fix ci
1 parent 340f52f commit 44bc2e2

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
- uses: ./.github/actions/setup-test
1616
with:
1717
tarantool-version: ${{matrix.version}}
18+
- name: build lib
19+
run: tt rocks make connection-dev-1.rockspec
1820
- name: run tests
1921
run: .rocks/bin/luatest --no-capture --coverage -v
2022
- name: rename luacov.stats.out

.rocks/config-5.1.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rocks_servers = {
2+
"https://moonlibs.org",
3+
"https://moonlibs.github.io/rocks",
4+
"https://rocks.tarantool.org",
5+
"https://luarocks.org",
6+
}

connection-dev-1.rockspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package = "connection"
2+
version = "dev-1"
3+
source = {
4+
url = "git+https://github.com/moonlibs/connection.git",
5+
branch = "master"
6+
}
7+
description = {
8+
summary = "Base class for tcp connections",
9+
detailed = "Base class for tcp connections",
10+
homepage = "https://github.com/moonlibs/connection.git",
11+
license = "Artistic",
12+
maintainer = "Mons Anderson <mons@cpan.org>"
13+
}
14+
dependencies = {
15+
"lua >= 5.1",
16+
"obj >= 0"
17+
}
18+
build = {
19+
type = "builtin",
20+
modules = {
21+
connection = "connection.lua"
22+
}
23+
}

0 commit comments

Comments
 (0)