Skip to content

Commit 47e1d88

Browse files
committed
use 0.12.1
1 parent 7b4a277 commit 47e1d88

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
@@ -19,7 +19,7 @@ const pkgs = packages("");
1919

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

2424
pub fn build(b: *std.Build) !void {
2525
switch (comptime builtin.zig_version.order(std.SemanticVersion.parse(recommended_zig_version) catch unreachable)) {
@@ -113,7 +113,7 @@ pub fn build(b: *std.Build) !void {
113113
});
114114
try common(tests, mode, options);
115115
tests.root_module.single_threaded = true;
116-
tests.test_runner = "src/test_runner.zig";
116+
tests.test_runner = .{ .path = "src/test_runner.zig" };
117117
const run_tests = b.addRunArtifact(tests);
118118

119119
// step

vendor/tigerbeetle-io

vendor/zig-v8

0 commit comments

Comments
 (0)