-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
61 lines (55 loc) · 1.45 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
stages:
- build
- test
- coverage
- packing
debian11_lua53:build:
stage: build
image: registry.gitlab.com/thislight/hussar:debian11_lua53_git
script:
- luarocks make
alpine3.12_lua54:build:
stage: build
image: registry.gitlab.com/thislight/hussar:alpine3d12_lua54_git
script:
- luarocks make
debian11_lua53:test:
stage: test
image: registry.gitlab.com/thislight/hussar:debian11_lua53_git
needs: ['debian11_lua53:build']
before_script:
- luarocks make
script:
- busted
alpine3.12_lua54:test:
stage: test
image: registry.gitlab.com/thislight/hussar:alpine3d12_lua54_git
needs: ['alpine3.12_lua54:build']
before_script:
- luarocks make
script:
- busted
alpine3.12_lua54:coverage:
stage: coverage
image: registry.gitlab.com/thislight/hussar:alpine3d12_lua54_git
needs: ['alpine3.12_lua54:build']
before_script:
- luarocks make
script:
- busted -c
- luacov away
- cat luacov.report.out
coverage: '/^Total\s+\d+\s+\d+\s+(\d+\.?\d*\%)/'
artifacts:
paths:
- luacov.report.out
- luacov.stats.out
packing_git_src_rock:
stage: packing
image: registry.gitlab.com/thislight/hussar:alpine3d12_lua54_git
needs: ['alpine3.12_lua54:build']
script:
- luarocks pack away-git-0.rockspec
artifacts:
paths:
- away-git-0.src.rock