start adding build_plan to track the build process for a job

This commit is contained in:
Sebastian Kuzminsky 2025-01-22 14:37:18 -06:00
parent e0e38503f0
commit 233abbe4ff
4 changed files with 61 additions and 4 deletions

View file

@ -20,6 +20,7 @@ fn main() -> anyhow::Result<()> {
for repo_path in &args.repo {
repos.add_repo(repo_path)?;
}
repos.compile(&args.target)?;
let build_plan = repos.compile(&args.target)?;
println!("{build_plan:#?}");
Ok(())
}