File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 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 --file pom.xml
93
+ run : ./mvnw -B test -P tarantool-container -Djacoco.destFile=target/jacoco-mt.exec --file pom.xml
94
+ - name : Upload jacoco exec results
95
+ uses : actions/upload-artifact@v2
96
+ with :
97
+ name : tests-mt-jacoco
98
+ path : " **/jacoco-mt.exec"
94
99
95
100
merge-jacoco-report :
96
101
name : Jacoco Merge Results
@@ -118,6 +123,11 @@ jobs:
118
123
name : tests-ee-jacoco
119
124
path : .
120
125
126
+ - uses : actions/download-artifact@v2
127
+ with :
128
+ name : tests-mt-jacoco
129
+ path : .
130
+
121
131
- name : merge results
122
132
run : |
123
133
./mvnw package jacoco:merge jacoco:report -DskipTests -Darguments=-DskipTests
Original file line number Diff line number Diff line change 259
259
</includes >
260
260
<excludes >
261
261
<exclude >**/*EnterpriseIT.java</exclude >
262
+ <exclude >**/*TarantoolContainer*IT.java</exclude >
262
263
</excludes >
263
264
<systemPropertyVariables >
264
265
<logback .configurationFile>${logging.config} </logback .configurationFile>
You can’t perform that action at this time.
0 commit comments