diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-18 08:38:38 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-18 08:38:38 +0800 |
| commit | c2708e655d350b240bc25e3f6c77026eebcf1b16 (patch) | |
| tree | 1a6569f4a826db677834791c6423e094036179bd /mingling_ci/src/res.rs | |
| parent | 5d0918ff5e19ebc67e4698bc308f6562779b7110 (diff) | |
refactor(ci-new): extract report log collection into resource
Move log parsing, ANSI stripping, and git info retrieval into a
`ResCollectLogs` resource read once during CI setup, keeping the
report command focused on rendering. Also add a `package_dirs` map
to `Manifests` for direct package name lookups.
Diffstat (limited to 'mingling_ci/src/res.rs')
| -rw-r--r-- | mingling_ci/src/res.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mingling_ci/src/res.rs b/mingling_ci/src/res.rs index 5b33a8f..7e7b172 100644 --- a/mingling_ci/src/res.rs +++ b/mingling_ci/src/res.rs @@ -1,3 +1,6 @@ +mod collect_logs; +pub use collect_logs::*; + mod manifests; pub use manifests::*; |
