File tree Expand file tree Collapse file tree 1 file changed +31
-6
lines changed
Expand file tree Collapse file tree 1 file changed +31
-6
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,47 @@ Or use the flag: `--codacy-api-base-url <Codacy_instance_URL>:16006`.
3232
3333## Running Codacy Coverage Reporter
3434
35- Requirements:
35+ ### Requirements
3636
37- - bash
38- - curl or wget
39- - glibc
37+ - ` bash ` or ` sh ` (Use ` bash ` on Ubuntu)
38+ - ` curl ` or ` wget `
39+ - ` glibc `
4040
41+ ### _ Using curl_
4142``` bash
4243bash <( curl -Ls https://coverage.codacy.com/get.sh)
4344```
4445
45- > To specify a coverage reporter version, use ` CODACY_REPORTER_VERSION ` environment variable. You can find all versions in the [ Releases tab] ( https://github.com/codacy/codacy-coverage-reporter/releases ) .
46+ ### _ Using wget_
47+ ``` bash
48+ bash <( wget -q -O - https://coverage.codacy.com/get.sh)
49+ ```
4650
47- Using CircleCI? Check out the [ codacy/coverage-reporter orb] ( docs/installation.md#circleci-orb ) .
51+ ### _ On Alpine Linux_
52+ ``` sh
53+ wget -qO - https://coverage.codacy.com/get.sh | sh
54+ ```
55+
56+ #### _ On Alpine Linux passsing command line options_
57+ ``` sh
58+ wget -qO - https://coverage.codacy.com/get.sh | sh -s report -l Java -r report1.xml --partial
59+ ```
60+
61+ ### Choose a specific version
62+ The script uses by default the latest version.
63+
64+ If you want to specify a coverage reporter version, use ` CODACY_REPORTER_VERSION ` environment variable.
65+
66+ You can find all versions in the [ Releases tab] ( https://github.com/codacy/codacy-coverage-reporter/releases ) .
67+
68+ ### Manual Installation
4869
4970If the automated script does not cover your use case, [ check the manual installation methods] ( docs/installation.md ) .
5071
72+ ## CircleCI Orb
73+
74+ Using CircleCI? Check out the [ codacy/coverage-reporter orb] ( docs/installation.md#circleci-orb ) .
75+
5176## Supported formats
5277
5378The following table contains the formats supported and which coverage tools generate them:
You can’t perform that action at this time.
0 commit comments