Compare commits

...

4 Commits

Author SHA1 Message Date
4e9fddc593 chor: update workflow version for zig compiler
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m1s
2025-08-04 21:03:06 +02:00
b43361da73 mod: rename file to be more agnostic to zig language styling 2025-08-04 21:02:46 +02:00
4714ec2bf9 chor: update zig version 2025-08-04 21:02:46 +02:00
a209fd6df5 chor: update ztime dependency 2025-08-04 21:02:45 +02:00
4 changed files with 31 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup zig installation
uses: mlugg/setup-zig@v1
uses: mlugg/setup-zig@v2
with:
version: master
- name: Run tests

View File

@@ -35,21 +35,27 @@ pub fn build(b: *std.Build) void {
const zlog_module = b.addModule("zlog", .{
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = b.path("src/zlog.zig"),
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "ztime", .module = ztime_dependency.module("ztime") },
.{ .name = "build_options", .module = options_module },
},
});
zlog_module.addImport("ztime", ztime_dependency.module("ztime"));
zlog_module.addImport("build_options", options_module);
const exe = b.addExecutable(.{
.name = "zlog",
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "ztime", .module = ztime_dependency.module("ztime") },
.{ .name = "zlog", .module = zlog_module },
},
}),
});
exe.root_module.addImport("ztime", ztime_dependency.module("ztime"));
exe.root_module.addImport("zlog", zlog_module);
// This declares intent for the executable to be installed into the
// standard location when the user invokes the "install" step (the default
@@ -82,12 +88,16 @@ pub fn build(b: *std.Build) void {
// Creates a step for unit testing. This only builds the test executable
// but does not run it.
const lib_unit_tests = b.addTest(.{
.root_source_file = b.path("src/zlog.zig"),
.root_module = b.createModule(.{
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "ztime", .module = ztime_dependency.module("ztime") },
.{ .name = "build_options", .module = options_module },
},
}),
});
lib_unit_tests.root_module.addImport("ztime", ztime_dependency.module("ztime"));
lib_unit_tests.root_module.addImport("build_options", options_module);
const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests);

View File

@@ -3,14 +3,14 @@
.fingerprint = 0x55b82e3347a594e8,
// version name should match the zig version except for the last number,
// which stands for the version inside a given zig version
.version = "0.13.0",
.version = "0.15.0",
.dependencies = .{
.ztime = .{
.url = "git+https://gitea.yves-biener.de/yves-biener/ztime#eacf7abf059646d12d704d01ee8c9c6bf4dc219a",
.hash = "ztime-0.0.0-e3nBJE1wAADaGX5lHpHg1U4-kD6rI5Erb6gjM3-w3DsN",
.url = "git+https://gitea.yves-biener.de/yves-biener/ztime#6a2f853f36aa55146e089d7c0c3f041012c0f8fe",
.hash = "ztime-0.0.0-e3nBJL5xAAC_guuqgVnOZncpvwH76NnKRC7JJ_zTF9rV",
},
},
.minimum_zig_version = "0.14.0",
.minimum_zig_version = "0.15.0",
.paths = .{
"build.zig",
"build.zig.zon",

View File

@@ -35,7 +35,7 @@ fn logFn(
}
if (comptime build_options.stderr) {
var buffer = io.bufferedWriter(io.getStdErr().writer());
var buffer = io.bufferedWriter(stderr().deprecatedWriter());
defer buffer.flush() catch {};
std.debug.lockStdErr();
@@ -193,6 +193,8 @@ pub const std_options: std.Options = .{
const std = @import("std");
const io = std.io;
const fs = std.fs;
const stderr = fs.File.stderr;
const log = std.log;
const fmt = std.fmt;
const build_options = @import("build_options");