-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitlab-ci.yml
116 lines (94 loc) · 1.91 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
image: gcc
before_script:
- apt-get update -qq
- apt-get install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev -y
- export XDG_RUNTIME_DIR="$(mktemp -p $(pwd) -d xdg-runtime-XXXXXX)"
- apt-get install cmake -y
test_Action:
script:
- cd tests/Action
- make
- ../run.sh
artifacts:
paths:
- tests/Action/cov.txt
stage: test
test_Clickable:
script:
- cd tests/Clickable
- make
- ../run.sh
artifacts:
paths:
- tests/Clickable/cov.txt
stage: test
test_DisplayCode:
script:
- cd tests/DisplayCode
- make
- ../run.sh
artifacts:
paths:
- tests/DisplayCode/cov.txt
stage: test
test_Element:
script:
- cd tests/Element
- make
- ../run.sh
artifacts:
paths:
- tests/Element/cov.txt
stage: test
test_Font:
script:
- cd tests/Font
- make
- ../run.sh
artifacts:
paths:
- tests/Font/cov.txt
stage: test
test_SANDAL2:
script:
- cd tests/SANDAL2
- make
- ../run.sh
artifacts:
paths:
- tests/SANDAL2/cov.txt
stage: test
test_Sprite:
script:
- cd tests/Sprite
- make
- ../run.sh
artifacts:
paths:
- tests/Sprite/cov.txt
stage: test
test_Window:
script:
- cd tests/Window
- make
- ../run.sh
artifacts:
paths:
- tests/Window/cov.txt
stage: test
coverage:
script:
- apt-get install bc -y
- cd tests
- ./coverage.sh
stage: deploy
dependencies:
- test_Window
- test_Sprite
- test_SANDAL2
- test_Font
- test_Element
- test_DisplayCode
- test_Clickable
- test_Action
coverage: /coverage[:] ([0-9,\.]+%)/