fixes steps with packages in sub-steps

This commit is contained in:
prime31 2020-06-18 17:51:39 -07:00 committed by GitHub
parent 65ad078b8c
commit b1b355c4ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,12 @@ pub fn main() !void {
// We also flatten them, we should probably keep the nested structure.
for (builder.top_level_steps.items) |tls| {
for (tls.step.dependencies.items) |step| {
try processStep(stdout_stream, step);
}
}
}
fn processStep(stdout_stream: var, step: *std.build.Step) anyerror!void {
if (step.cast(InstallArtifactStep)) |install_exe| {
for (install_exe.artifact.packages.items) |pkg| {
try processPackage(stdout_stream, pkg);
@ -37,7 +43,9 @@ pub fn main() !void {
for (exe.packages.items) |pkg| {
try processPackage(stdout_stream, pkg);
}
}
} else {
for (step.dependencies.items) |unknown_step| {
try processStep(stdout_stream, unknown_step);
}
}
}