upgrade to zig 0.13.0
All checks were successful
Generic zig build / build (push) Successful in 33s

This commit is contained in:
Emil Lerch 2024-06-08 10:04:41 -07:00
parent 90b9815e29
commit 536faab35c
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
3 changed files with 6 additions and 5 deletions

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: elerch/setup-zig@v3 - uses: elerch/setup-zig@v3
with: with:
version: 0.12.0 version: 0.13.0
- uses: elerch/zig-action-cache@v1.1.6 - uses: elerch/zig-action-cache@v1.1.6
- name: Build project - name: Build project
run: zig build --summary all run: zig build --summary all

View File

@ -19,7 +19,7 @@ pub fn build(b: *std.Build) !void {
.name = "lambda-zig-sample", .name = "lambda-zig-sample",
// In this case the main source file is merely a path, however, in more // In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file. // complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/main.zig" }, .root_source_file = b.path("src/main.zig"),
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}); });
@ -57,7 +57,7 @@ pub fn build(b: *std.Build) !void {
// Creates a step for unit testing. This only builds the test executable // Creates a step for unit testing. This only builds the test executable
// but does not run it. // but does not run it.
const unit_tests = b.addTest(.{ const unit_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" }, .root_source_file = b.path("src/main.zig"),
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}); });

View File

@ -3,8 +3,8 @@
.version = "0.1.0", .version = "0.1.0",
.dependencies = .{ .dependencies = .{
.@"lambda-zig" = .{ .@"lambda-zig" = .{
.url = "https://git.lerch.org/lobo/lambda-zig/archive/9d1108697282d24509472d7019c97d1afe06ba1c.tar.gz", .url = "https://git.lerch.org/lobo/lambda-zig/archive/ef5b793882c60ff3d9f3e088fc47758e8ec5a2bc.tar.gz",
.hash = "12205b8a2be03b63a1b07bde373e8293c96be53a68a58054abe8689f80d691633862", .hash = "122053d827cde4634ab521ee87cc1195abbbdbd9b5ccc66e557764a151f88c138d02",
}, },
}, },
.paths = .{ .paths = .{
@ -12,5 +12,6 @@
"build.zig.zon", "build.zig.zon",
"src", "src",
"README.md", "README.md",
"LICENSE.md",
}, },
} }