File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,14 @@ script:
22
22
after_success :
23
23
- bash <(curl -s https://codecov.io/bash)
24
24
` ` `
25
+
25
26
> Reference http://docs.travis-ci.com/user/languages/objective-c/
26
27
27
- > All other CI you can simply run ` bash <(curl -s https://codecov.io/bash)`.
28
+ The two important parts are:
29
+ * ` GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES` (To have Xcode create code coverage files)
30
+ * `bash <(curl -s https://codecov.io/bash)` (To upload code coverage to Codecov.io)
31
+
32
+ This is used to have Xcode output code coverage files for Codecov.io to process.
28
33
29
34
# # Private Repos
30
35
> Set `CODECOV_TOKEN` in your environment variables.
@@ -45,3 +50,4 @@ View source and learn more about [Codecov Global Uploader][4]
45
50
[2] : https://twitter.com/codecov
46
51
[3] : mailto:hello@codecov.io
47
52
[4] : https://github.com/codecov/codecov-bash
53
+
You can’t perform that action at this time.
0 commit comments