File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,15 @@ Please execute `xcc generate --help` for all options.
16
16
17
17
The XML output can then be uploaded to your CI provider as an artefact. It has been sucessfully tested with Azure DevOps pipelines.
18
18
19
+ ### Output formats
20
+
21
+ ` xcc ` currently supports these output formats:
22
+
23
+ - cobertura XML: ` cobertura-xml `
24
+ - sonarqube XML: ` sonarqube-xml `
25
+
26
+ You can specify several output formats in the CLI ` /usr/local/bin/xcc generate coverage.json . cobertura-xml sonarqube-xml `
27
+
19
28
### Contribution
20
29
21
30
PR are of course welcome. To add new input or output formats, please refer to how ` Decoders ` and ` Converters ` are implemented.
@@ -26,4 +35,4 @@ This tool is based on the following gist:
26
35
27
36
[ https://gist.github.com/csaby02/ab2441715a89865a7e8e29804df23dc6 ] ( https://gist.github.com/csaby02/ab2441715a89865a7e8e29804df23dc6 )
28
37
29
- Thanks to its author.
38
+ Thanks to its author.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Core
4
4
struct Xcc : ParsableCommand {
5
5
static let configuration = CommandConfiguration (
6
6
abstract: " A Swift command-line tool to convert xccov outputs into continuous integration friendly formats " ,
7
- version: " 0.1 " ,
7
+ version: " 0.2.0 " ,
8
8
subcommands: [ Generate . self] ,
9
9
defaultSubcommand: Generate . self)
10
10
You can’t perform that action at this time.
0 commit comments