diff options
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 { |
