Skip to content

Commit

Permalink
chore(ci): use new Codecov uploader for reporting code coverage (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar authored Feb 23, 2022
1 parent 0306299 commit 25186c0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,16 @@ jobs:
- storing-test-results
- storing-artifacts
- run:
name: "Collecting coverage reports"
command: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
name: Collecting coverage reports
command: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM
curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
curl -s https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
shasum -a 256 -c codecov.SHA256SUM
chmod +x ./codecov
./codecov
deploy-snapshot:
docker:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
### Bug Fixes
1. [#303](https://github.com/influxdata/influxdb-client-java/pull/303): Change `PermissionResource.type` to `String`

### CI
1. [#304](https://github.com/influxdata/influxdb-client-java/pull/304): Use new Codecov uploader for reporting code coverage

## 4.3.0 [2022-02-18]

### Bug Fixes
Expand Down

0 comments on commit 25186c0

Please sign in to comment.