aboutsummaryrefslogtreecommitdiff
path: root/mingling_ci/src/cmd
Commit message (Collapse)AuthorAgeFilesLines
* chore: reorganize dev tools into dev/ directory and consolidate configsHEADmain魏曹先生6 hours6-494/+0
| | | | | | | | | | Move CI, dev tools, and configs from root-level scattered locations into a unified `dev/` directory structure. Update all references across build scripts, documentation, and editor configurations. Also consolidate editor config generation into build.rs for automated synchronization of rust-analyzer settings across VS Code and Zed.
* chore: show diff on git-unlock in CI魏曹先生24 hours1-4/+25
| | | | | | Pass `--show-diff` to `git-unlock` and restructure CI steps as (command, args) pairs to support per-step arguments. The diff prints tracked workspace changes before they are discarded.
* feat(ci-new): preserve dirty changes across CI lock魏曹先生25 hours2-23/+57
| | | | | | Store dirty workspace changes in a temporary commit so `git-unlock` can restore them, with the marker file content (`true`/`false`) recording which restore path to take.
* feat(git-unlock): report dirty working tree via exit code魏曹先生25 hours1-5/+20
|
* feat(ci-new): add git-lock and git-unlock CI commands魏曹先生25 hours2-0/+123
| | | | | Add temporary commit and restore commands to stabilize the workspace during CI runs, with safety checks and error handling.
* refactor(mingling_ci): rename build, clippy, and docs commands to -check魏曹先生25 hours2-113/+0
| | | | suffix
* feat(ci-new): add docs-build command to mingling_ci魏曹先生25 hours1-0/+44
|
* refactor(ci-new): extract shared task progress bar helper魏曹先生26 hours1-11/+2
|
* feat(ci-new): add test-examples command魏曹先生26 hours1-0/+78
| | | | | | Add a new `test-examples` command that builds each example and runs its `test.toml` cases, reporting failures and setting a non-zero exit code when any example fails.
* feat(ci-new): add markdown structural comparison commands魏曹先生26 hours1-192/+0
| | | | | | | Add `markdown-compare` and `markdown-compare-all` commands to verify that translated docs maintain the same structure as the reference. Compare heading levels, code fences, lists, quotes, and other structural elements while allowing text differences.
* feat(ci-new): report per-file results魏曹先生26 hours1-6/+70
| | | | | | Add per-file report generation for markdown checks using the reporter module, grouping outcomes by source file and exporting ok or error results with snake_case item names.
* feat(ci-new): add markdown code block verification commands魏曹先生26 hours1-0/+128
| | | | | | | Add `markdown-check` and `markdown-check-all` commands to verify Rust code blocks in markdown files. Code blocks are compiled as test projects, sharing temporary crates based on dependency configuration for parallel execution.
* refactor(ci-new): generalize report entries from packages to items魏曹先生26 hours1-26/+21
| | | | | | | | Rename package-based terminology and structures to item-based, allowing arbitrary items with associated locations instead of only crate packages. Locations are now carried through report files and included in generated reports, with the fallback to `—` removed.
* feat(ci-new): add show-features command to list documented features魏曹先生27 hours1-0/+26
|
* feat(ci-new): add report-clean command to remove collected logs and魏曹先生27 hours2-3/+56
| | | | report
* refactor(ci-new): extract report log collection into resource魏曹先生28 hours2-169/+32
| | | | | | | 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.
* feat: add new Mingling CI system crate (WIP)魏曹先生28 hours2-0/+364
Add `mingling_ci` as a standalone CI system built on Mingling 0.4.0 to validate the next version, with report collection and manifest listing commands.