mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 11:40:46 -05:00
Use std.Build.LazyPath over now removed std.Build.FileSource.
See corresponding ziglang change here: https://github.com/ziglang/zig/issues/16353
This commit is contained in:
parent
528a8645f8
commit
7a0cbb131f
1 changed files with 5 additions and 5 deletions
|
@ -9,7 +9,7 @@ const mem = std.mem;
|
||||||
const Allocator = std.mem.Allocator;
|
const Allocator = std.mem.Allocator;
|
||||||
const Child = std.process.Child;
|
const Child = std.process.Child;
|
||||||
const Build = std.Build;
|
const Build = std.Build;
|
||||||
const FileSource = std.Build.FileSource;
|
const LazyPath = std.Build.LazyPath;
|
||||||
const Reader = fs.File.Reader;
|
const Reader = fs.File.Reader;
|
||||||
const RunStep = std.Build.RunStep;
|
const RunStep = std.Build.RunStep;
|
||||||
const Step = Build.Step;
|
const Step = Build.Step;
|
||||||
|
@ -132,9 +132,9 @@ fn createCase(b: *Build, name: []const u8) *Step {
|
||||||
const CheckNamedStep = struct {
|
const CheckNamedStep = struct {
|
||||||
step: Step,
|
step: Step,
|
||||||
exercise: Exercise,
|
exercise: Exercise,
|
||||||
stderr: FileSource,
|
stderr: LazyPath,
|
||||||
|
|
||||||
pub fn create(owner: *Build, exercise: Exercise, stderr: FileSource) *CheckNamedStep {
|
pub fn create(owner: *Build, exercise: Exercise, stderr: LazyPath) *CheckNamedStep {
|
||||||
const self = owner.allocator.create(CheckNamedStep) catch @panic("OOM");
|
const self = owner.allocator.create(CheckNamedStep) catch @panic("OOM");
|
||||||
self.* = .{
|
self.* = .{
|
||||||
.step = Step.init(.{
|
.step = Step.init(.{
|
||||||
|
@ -180,12 +180,12 @@ const CheckNamedStep = struct {
|
||||||
const CheckStep = struct {
|
const CheckStep = struct {
|
||||||
step: Step,
|
step: Step,
|
||||||
exercises: []const Exercise,
|
exercises: []const Exercise,
|
||||||
stderr: FileSource,
|
stderr: LazyPath,
|
||||||
|
|
||||||
pub fn create(
|
pub fn create(
|
||||||
owner: *Build,
|
owner: *Build,
|
||||||
exercises: []const Exercise,
|
exercises: []const Exercise,
|
||||||
stderr: FileSource,
|
stderr: LazyPath,
|
||||||
) *CheckStep {
|
) *CheckStep {
|
||||||
const self = owner.allocator.create(CheckStep) catch @panic("OOM");
|
const self = owner.allocator.create(CheckStep) catch @panic("OOM");
|
||||||
self.* = .{
|
self.* = .{
|
||||||
|
|
Loading…
Reference in a new issue