Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [0.12.0, 0.13.0, '']
version: [0.14.0, '']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
6 changes: 0 additions & 6 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const Compile = Build.Step.Compile;
const Module = Build.Module;

const lib_name = "webui";
const zig_ver = builtin.zig_version.minor;
var global_log_level: std.log.Level = .warn;

/// Vendored dependencies of webui.
Expand All @@ -22,11 +21,6 @@ pub fn build(b: *Build) !void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});

switch (comptime zig_ver) {
12, 13, 14 => {},
else => return error.UnsupportedZigVersion,
}

const is_dynamic = b.option(bool, "dynamic", "build the dynamic library") orelse false;
const enable_tls = b.option(bool, "enable-tls", "enable TLS support") orelse false;
const verbose = b.option(std.log.Level, "verbose", "set verbose output") orelse .warn;
Expand Down
3 changes: 2 additions & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.{
.name = "webui",
.name = .webui,
.version = "2.5.0-beta.3",
.fingerprint = 0xac5d87f2e5831aa7,
.paths = .{
"src",
"include",
Expand Down