Skip to content

Commit 035e6ca

Browse files
committed
use 0.12.1
1 parent 6e8f6ff commit 035e6ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const pkgs = packages("");
55

66
/// Do not rename this constant. It is scanned by some scripts to determine
77
/// which zig version to install.
8-
pub const recommended_zig_version = "0.12.0-dev.3518+d2be725e4";
8+
pub const recommended_zig_version = "0.12.1";
99

1010
pub fn build(b: *std.Build) !void {
1111
switch (comptime builtin.zig_version.order(std.SemanticVersion.parse(recommended_zig_version) catch unreachable)) {
@@ -99,7 +99,7 @@ pub fn build(b: *std.Build) !void {
9999
});
100100
try common(tests, mode, options);
101101
tests.root_module.single_threaded = true;
102-
tests.test_runner = "src/test_runner.zig";
102+
tests.test_runner = .{ .path = "src/test_runner.zig" };
103103
const run_tests = b.addRunArtifact(tests);
104104

105105
// step

vendor/tigerbeetle-io

vendor/zig-v8

0 commit comments

Comments
 (0)