From b3aa0a08848ccd01cd7a4ecef6ff5bf46719af85 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 18 Aug 2026 09:07:22 +0800 Subject: feat(ci-new): add report-clean command to remove collected logs and report --- mingling_ci/src/reporter.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling_ci/src/reporter.rs') diff --git a/mingling_ci/src/reporter.rs b/mingling_ci/src/reporter.rs index a3619e7..f5cef60 100644 --- a/mingling_ci/src/reporter.rs +++ b/mingling_ci/src/reporter.rs @@ -11,6 +11,9 @@ use std::sync::Mutex; /// Root of the collected CI logs (relative to the repo root). pub const COLLECT_DIR: &str = "./.temp/reports/collect"; +/// Generated report output (relative to the repo root). +pub const REPORT_PATH: &str = "./.temp/reports/result.md"; + /// The platform a package check ran on. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum ReportPlatform { -- cgit