diff --git a/build.zig b/build.zig index 02542104..55de246b 100644 --- a/build.zig +++ b/build.zig @@ -155,7 +155,8 @@ const CreateSymlinksStep = struct { return self; } - fn make(step: *std.Build.Step, prog_node: std.Progress.Node) anyerror!void { + fn make(step: *std.Build.Step, options: std.Build.Step.MakeOptions) anyerror!void { + const prog_node = options.progress_node; const self: *CreateSymlinksStep = @fieldParentPtr("step", step); const install_path = self.install.artifact.getEmittedBin().getPath(self.builder); const rel_source = fs.path.basename(install_path); diff --git a/test/test.zig b/test/test.zig index 2c04d365..f93e6364 100644 --- a/test/test.zig +++ b/test/test.zig @@ -235,9 +235,9 @@ pub const SkipTestStep = struct { return self; } - fn make(step: *Step, prog_node: std.Progress.Node) anyerror!void { + fn make(step: *Step, options: Step.MakeOptions) anyerror!void { _ = step; - _ = prog_node; + _ = options; return error.MakeSkipped; } };