From 95a8c64b75b9e42b2d7a72c51a51c0b2034b9cda Mon Sep 17 00:00:00 2001 From: fmrsabino <3332770+fmrsabino@users.noreply.github.com> Date: Fri, 25 Aug 2023 14:46:34 +0200 Subject: [PATCH] Remove grcov - 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. --- .github/workflows/rust.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c9f6430e..0f4e191b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 ]