From e609ef8d2eb1a9a109d074170ca80c598ea6d8c1 Mon Sep 17 00:00:00 2001 From: jinzhongjia Date: Tue, 13 Jan 2026 11:15:42 +0800 Subject: [PATCH 1/2] ci: remove zig master ci suport. only support zig stable release! --- .github/workflows/zig.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zig.yml b/.github/workflows/zig.yml index a727e3e90..e563a396a 100644 --- a/.github/workflows/zig.yml +++ b/.github/workflows/zig.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - version: [0.14.0, ''] + version: [0.14.0, 0.15.1] fail-fast: false runs-on: ${{ matrix.os }} steps: From e14f459bf330c025a15e2aba36f5eedba88a9ba6 Mon Sep 17 00:00:00 2001 From: jinzhongjia Date: Tue, 13 Jan 2026 11:16:16 +0800 Subject: [PATCH 2/2] chore: format zig code --- build.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 55c4d6886..1bc8dc59e 100644 --- a/build.zig +++ b/build.zig @@ -1,10 +1,9 @@ const std = @import("std"); -const builtin = @import("builtin"); - const Build = std.Build; const OptimizeMode = std.builtin.OptimizeMode; const Compile = Build.Step.Compile; const Module = Build.Module; +const builtin = @import("builtin"); const lib_name = "webui"; var global_log_level: std.log.Level = .warn;