Skip to content

Commit 08cddaf

Browse files
Rexicon226andrewrk
authored andcommitted
test: update make functions to use MakeOptions
1 parent f303c39 commit 08cddaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/standalone/run_output_caching/build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const CheckOutputCaching = struct {
8787
return check;
8888
}
8989

90-
fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
90+
fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
9191
const check: *CheckOutputCaching = @fieldParentPtr("step", step);
9292

9393
for (step.dependencies.items) |dependency| {
@@ -125,7 +125,7 @@ const CheckPathEquality = struct {
125125
return check;
126126
}
127127

128-
fn make(step: *std.Build.Step, _: std.Progress.Node) !void {
128+
fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) !void {
129129
const check: *CheckPathEquality = @fieldParentPtr("step", step);
130130
std.debug.assert(check.output_paths.len != 0);
131131
for (check.output_paths[0 .. check.output_paths.len - 1], check.output_paths[1..]) |a, b| {

0 commit comments

Comments
 (0)