| ... | @@ -431,6 +431,7 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -431,6 +431,7 @@ pub fn main(init: process.Init.Minimal) !void { |
| 431 | }; | 431 | }; |
| 432 | var top_level_steps: std.StringArrayHashMapUnmanaged(Configuration.Step.Index) = .empty; | 432 | var top_level_steps: std.StringArrayHashMapUnmanaged(Configuration.Step.Index) = .empty; |
| 433 | for (configuration.steps, 0..) |*conf_step, step_index_usize| { | 433 | for (configuration.steps, 0..) |*conf_step, step_index_usize| { |
| | 434 | if (conf_step.owner != .root) continue; |
| 434 | const step_index: Configuration.Step.Index = @enumFromInt(step_index_usize); | 435 | const step_index: Configuration.Step.Index = @enumFromInt(step_index_usize); |
| 435 | const flags = conf_step.flags(&configuration); | 436 | const flags = conf_step.flags(&configuration); |
| 436 | if (flags.tag == .top_level) { | 437 | if (flags.tag == .top_level) { |