diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-18 09:07:22 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-18 09:07:22 +0800 |
| commit | b3aa0a08848ccd01cd7a4ecef6ff5bf46719af85 (patch) | |
| tree | cf079a8714ecde10339701e9f77fb5f886ea9d2c /mingling_ci/src/reporter.rs | |
| parent | 9591f192004547a4532e000c0f4534eb48bcb1bb (diff) | |
feat(ci-new): add report-clean command to remove collected logs and
report
Diffstat (limited to 'mingling_ci/src/reporter.rs')
| -rw-r--r-- | mingling_ci/src/reporter.rs | 3 |
1 files changed, 3 insertions, 0 deletions
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 { |
