Commit 08cddaf11c

David Rubin <daviru007@icloud.com>
2024-07-21 12:16:32
test: update `make` functions to use `MakeOptions`
1 parent f303c39
Changed files (1)
test
standalone
run_output_caching
test/standalone/run_output_caching/build.zig
@@ -87,7 +87,7 @@ const CheckOutputCaching = struct {
         return check;
     }
 
-    fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
+    fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
         const check: *CheckOutputCaching = @fieldParentPtr("step", step);
 
         for (step.dependencies.items) |dependency| {
@@ -125,7 +125,7 @@ const CheckPathEquality = struct {
         return check;
     }
 
-    fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
+    fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
         const check: *CheckPathEquality = @fieldParentPtr("step", step);
         std.debug.assert(check.output_paths.len != 0);
         for (check.output_paths[0 .. check.output_paths.len - 1], check.output_paths[1..]) |a, b| {