Skip to content

Commit b2c9174

Browse files
committed
build: make coverage recipe use rustup stable
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
1 parent 9297475 commit b2c9174

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ check: fmt-check lint test
3737

3838
# Generate code coverage report (requires cargo-llvm-cov)
3939
coverage:
40-
cargo llvm-cov --workspace --html --ignore-filename-regex 'gen/'
40+
rustup component add llvm-tools-preview --toolchain stable
41+
rustup run stable cargo llvm-cov --workspace --html --ignore-filename-regex 'gen/'
4142
@echo "Coverage report: target/llvm-cov/html/index.html"
4243

4344
# Run the helloworld example

0 commit comments

Comments
 (0)