We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5b78e9 commit 3a3c81eCopy full SHA for 3a3c81e
.github/workflows/cron-ci.yaml
@@ -28,6 +28,7 @@ jobs:
28
toolchain: nightly
29
override: true
30
components: llvm-tools-preview
31
+ - run: sudo apt-get install lcov
32
- uses: actions-rs/cargo@v1
33
with:
34
command: build
@@ -59,7 +60,8 @@ jobs:
59
60
local tool=$1; shift; "$(rustc --print target-libdir)/../bin/llvm-$tool" "$@"
61
}
62
rusttool profdata merge extra_tests/snippet-*.profraw regrtest.profraw --output codecov.profdata
- rusttool cov export --instr-profile codecov.profdata target/release/rustpython >codecov.lcov
63
+ rusttool cov export --instr-profile codecov.profdata target/release/rustpython --format lcov >codecov.lcov
64
+ lcov -r codecov.lcov '/*' -o codecov.lcov
65
- name: upload to Codecov
66
uses: codecov/codecov-action@v1
67
0 commit comments