From 43ea8b80c9d25469d0c7f3ad0af07145b392e121 Mon Sep 17 00:00:00 2001 From: bQUARKz Date: Wed, 8 Apr 2026 07:50:35 +0100 Subject: [PATCH] update jenkinsfile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0eb283a..74a3b031 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,9 @@ test-local: test-debugger-socket: cargo test -p prometeu-host-desktop-winit --lib -- --ignored +clean: + cargo llvm-cov clean --workspace + coverage: cargo llvm-cov --workspace --all-features --html --output-dir target/llvm-cov/html --fail-under-lines 0 --fail-under-functions 0 --fail-under-regions 0 @@ -25,5 +28,5 @@ coverage-json: cargo llvm-cov report --json --summary-only --output-path target/llvm-cov/summary.json test: fmt-check clippy test-local test-debugger-socket -ci: fmt-check clippy coverage +ci: clean fmt-check clippy coverage cobertura: coverage-xml coverage-json