Skip to content

Commit e4e4cc9

Browse files
author
Thibault Wittemberg
committed
project: prepare for version 0.2.0
1 parent ebee919 commit e4e4cc9

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ Please execute `xcc generate --help` for all options.
1616

1717
The XML output can then be uploaded to your CI provider as an artefact. It has been sucessfully tested with Azure DevOps pipelines.
1818

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+
1928
### Contribution
2029

2130
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:
2635

2736
[https://gist.github.com/csaby02/ab2441715a89865a7e8e29804df23dc6](https://gist.github.com/csaby02/ab2441715a89865a7e8e29804df23dc6)
2837

29-
Thanks to its author.
38+
Thanks to its author.

Sources/XcodeCoverageConverter/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Core
44
struct Xcc: ParsableCommand {
55
static let configuration = CommandConfiguration(
66
abstract: "A Swift command-line tool to convert xccov outputs into continuous integration friendly formats",
7-
version: "0.1",
7+
version: "0.2.0",
88
subcommands: [Generate.self],
99
defaultSubcommand: Generate.self)
1010

0 commit comments

Comments
 (0)