Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Commit

Permalink
Remove grcov
Browse files Browse the repository at this point in the history
- Removes grcov and test coverage upload as the new version requires rustc 1.70.0.
- Since we stopped maintaining this service, updating the rustc version to 1.70.0 is out of scope.
  • Loading branch information
fmrsabino committed Aug 25, 2023
1 parent eb48193 commit 95a8c64
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,29 +82,6 @@ jobs:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Awarnings'

- name: Cache grcov
id: grcov-cache
uses: actions/cache@v3.3.1
with:
path: /home/runner/.cargo/bin/
key: ${{ runner.os }}-grcov-v080

- name: Fetch grcov
if: steps.grcov-cache.outputs.cache-hit != 'true'
run: curl --location https://github.com/mozilla/grcov/releases/download/v0.8.0/grcov-linux-x86_64.tar.bz2 | tar jxf -

- name: Run grcov
id: coverage
uses: actions-rs/grcov@v0.1
with:
config: ./.github/action-rs/grcov.yml

- name: Coveralls upload
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.coverage.outputs.report }}

docs:
runs-on: ubuntu-20.04
needs: [ rustfmt, tests ]
Expand Down

0 comments on commit 95a8c64

Please sign in to comment.