codecov-bash
codecov-bash copied to clipboard
Global coverage report uploader for Codecov
I think there is no option to disable searching gcov files in project root. The project root contains multiple build dirs and I don't want to upload all of these.
I'm not a `make` expert so it might be obvious to others; I struggled a long time with the proper expansion of the `ci_env` variable. The following fixed it for...
https://github.com/codecov/codecov-bash/blob/4678d212cce2078bbaaf5027af0c0dafaad6a095/codecov#L211 Running codecov-bash to parse coverage from an Xcode project leaves *.coverage.txt files in the current directory. I would expect these files to be removed with the `-c` argument.
### FAIL So the coverage can't map source code with path [commit result](https://codecov.io/gh/guhungry/ios-version/commit/d0806bfab61a452bc21032035cabb0660dd82639) Here is the result file ``` # path=WCVersion.framework.coverage.txt 1| |// *** OMMITED ***
It seems like there something wrong with the `find` command when running `codecov.sh` on Azure Pipelines. I'm getting: `FIND: Parameter format not correct`. As you can [see from my Azure...
When a CodeBuild is triggered by a CodePipeline, the variable `CODEBUILD_SOURCE_REPO_URL` is empty. This is as designed, according to [the documentation](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-env-vars.html): > CODEBUILD_SOURCE_REPO_URL > The URL to the input artifact...
As the title suggests, both `Content-Encoding` and `X-Content-Encoding` are set. This is more than likely a bug: - They are duplicates of one another - `X-Content-Encoding` is the nonstandard variant...
Running `bash curl 7.64.1 (x86_64-apple-darwin19.0) libcurl/7.64.1 (SecureTransport) LibreSSL/2.8.3 zlib/1.2.11 nghttp2/1.39.2 Release-Date: 2019-03-27 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp...
As a part of its routine for auto-detecting the underlying CI engine, the Bash uploader sets the `build_url` parameter to `http://github.com/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}` in [L875](https://github.com/codecov/codecov-bash/blob/1ac22d8df76b4164e14d154c96881d3604915350/codecov#L875) upon detecting GitHub Actions as the CI...
`swift package generate-xcodeproj` is deprecated and will soon be removed. This means that the preferred way to generate code coverage for projects that only supports Swift SPM going forward, will...