ci: don't run gtk tests in CI

This commit is contained in:
Mitchell Hashimoto
2023-09-18 15:46:57 -07:00
parent ed0a2ecfc4
commit 90b5fdeede
3 changed files with 2 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ pub const surface = @import("apprt/surface.zig");
/// Window or something.
pub const runtime = switch (build_config.artifact) {
.exe => switch (build_config.app_runtime) {
.none => @compileError("exe with no runtime not allowed"),
.none => struct {},
.glfw => glfw,
.gtk => gtk,
},