File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 88 strategy :
99 matrix :
1010 os : [ubuntu-latest, macos-latest, windows-latest]
11- version : [0.12.0, 0.13 .0, '']
11+ version : [0.14 .0, '']
1212 fail-fast : false
1313 runs-on : ${{ matrix.os }}
1414 steps :
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ const Compile = Build.Step.Compile;
77const Module = Build .Module ;
88
99const lib_name = "webui" ;
10- const zig_ver = builtin .zig_version .minor ;
1110var global_log_level : std.log.Level = .warn ;
1211
1312/// Vendored dependencies of webui.
@@ -22,11 +21,6 @@ pub fn build(b: *Build) !void {
2221 const target = b .standardTargetOptions (.{});
2322 const optimize = b .standardOptimizeOption (.{});
2423
25- switch (comptime zig_ver ) {
26- 12 , 13 , 14 = > {},
27- else = > return error .UnsupportedZigVersion ,
28- }
29-
3024 const is_dynamic = b .option (bool , "dynamic" , "build the dynamic library" ) orelse false ;
3125 const enable_tls = b .option (bool , "enable-tls" , "enable TLS support" ) orelse false ;
3226 const verbose = b .option (std .log .Level , "verbose" , "set verbose output" ) orelse .warn ;
Original file line number Diff line number Diff line change 11.{
2- .name = " webui" ,
2+ .name = . webui ,
33 .version = "2.5.0-beta.3" ,
4+ .fingerprint = 0xac5d87f2e5831aa7 ,
45 .paths = .{
56 "src" ,
67 "include" ,
You can’t perform that action at this time.
0 commit comments