10
10
branches : [ master ]
11
11
12
12
jobs :
13
- tests-ce :
13
+ tests-cartridge-container :
14
14
runs-on : ubuntu-latest
15
15
timeout-minutes : 25
16
16
strategy :
@@ -26,20 +26,20 @@ jobs:
26
26
cache : ' maven'
27
27
28
28
- name : Build and run unit tests
29
- run : ./mvnw -B verify -Djacoco.destFile=target/jacoco-ce .exec --file pom.xml
29
+ run : ./mvnw -B verify -Djacoco.destFile=target/jacoco-cartridge-container .exec --file pom.xml
30
30
31
31
- name : Run integration tests
32
32
env :
33
33
TARANTOOL_SERVER_USER : root
34
34
TARANTOOL_SERVER_GROUP : root
35
35
TARANTOOL_VERSION : " 2.11.2-centos7"
36
- run : ./mvnw -B test -P integration -Djacoco.destFile=target/jacoco-ce .exec --file pom.xml
36
+ run : ./mvnw -B test -P integration -Djacoco.destFile=target/jacoco-cartridge-container .exec --file pom.xml
37
37
38
38
- name : Upload jacoco exec results
39
39
uses : actions/upload-artifact@v2
40
40
with :
41
- name : tests-ce -jacoco
42
- path : " **/jacoco-ce .exec"
41
+ name : tests-cartridge-container -jacoco
42
+ path : " **/jacoco-cartridge-container .exec"
43
43
44
44
tests-ee :
45
45
runs-on : ubuntu-latest
68
68
name : tests-ee-jacoco
69
69
path : " **/jacoco-ee.exec"
70
70
71
- tests-matrix :
71
+ tests-tarantool-container :
72
72
runs-on : ubuntu-latest
73
73
timeout-minutes : 25
74
74
strategy :
@@ -90,18 +90,18 @@ jobs:
90
90
TARANTOOL_VERSION : ${{ matrix.tarantool-version }}
91
91
TARANTOOL_SERVER_USER : root
92
92
TARANTOOL_SERVER_GROUP : root
93
- run : ./mvnw -B test -P tarantool-container -Djacoco.destFile=target/jacoco-mt .exec --file pom.xml
93
+ run : ./mvnw -B test -P tarantool-container -Djacoco.destFile=target/jacoco-tarantool-container .exec --file pom.xml
94
94
95
95
- name : Upload jacoco exec results
96
96
uses : actions/upload-artifact@v2
97
97
with :
98
- name : tests-mt -jacoco
99
- path : " **/jacoco-mt .exec"
98
+ name : tests-tarantool-container -jacoco
99
+ path : " **/jacoco-tarantool-container .exec"
100
100
101
101
merge-jacoco-report :
102
102
name : Jacoco Merge Results
103
103
needs :
104
- - tests-ce
104
+ - tests-cartridge-container
105
105
- tests-ee
106
106
runs-on : ubuntu-latest
107
107
steps :
@@ -116,7 +116,7 @@ jobs:
116
116
117
117
- uses : actions/download-artifact@v2
118
118
with :
119
- name : tests-ce -jacoco
119
+ name : tests-cartridge-container -jacoco
120
120
path : .
121
121
122
122
- uses : actions/download-artifact@v2
@@ -126,7 +126,7 @@ jobs:
126
126
127
127
- uses : actions/download-artifact@v2
128
128
with :
129
- name : tests-mt -jacoco
129
+ name : tests-tarantool-container -jacoco
130
130
path : .
131
131
132
132
- name : merge results
0 commit comments