Skip to content

Commit

Permalink
Merge 03f965e into 64d59f5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathas-Conceicao committed May 4, 2020
2 parents 64d59f5 + 03f965e commit cdd2d96
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
args: --all --all-features --no-fail-fast -- --nocapture
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads'
RUSTFLAGS: '-Zprofile -Zpanic_abort_tests -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort'
- id: coverage
if: matrix.version == 'nightly'
uses: actions-rs/grcov@master
Expand All @@ -88,6 +88,10 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.coverage.outputs.report }}
- name: Clear the coverage files from cache
if: matrix.version == 'nightly'
run: |
find target/ -name "*.gcda" -exec rm {} +
- name: Clear the cargo caches
run: |
Expand Down

0 comments on commit cdd2d96

Please sign in to comment.