Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions zigux/tests/lane17_phase1_bench_live_step_patch_contract_build.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const std = @import("std");

pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});

const root_module = b.createModule(.{
.root_source_file = b.path("lane17_phase1_bench_live_step_patch_contract.zig"),
.target = target,
.optimize = optimize,
});

const unit_tests = b.addTest(.{ .root_module = root_module });
const run_unit_tests = b.addRunArtifact(unit_tests);

const contract_step = b.step(
"lane17-phase1-bench-live-step-patch-contract",
"Run the Lane 17 Phase 1 bench live workflow patch contract",
);
contract_step.dependOn(&run_unit_tests.step);

const test_step = b.step("test", "Run the Lane 17 bench live workflow patch contract tests");
test_step.dependOn(&run_unit_tests.step);
}
Loading