From 98bbb54d727b0bf7ae4e3a7fb5832818ea2f6a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHEN?= Date: Wed, 10 Jun 2026 16:52:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?submodule:=20bump=20Peanut=20=E2=80=94=20P2?= =?UTF-8?q?-16=20static=20globals=20=E2=86=92=20Application=20members?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Peanut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Peanut b/Peanut index 8d26c3a..0a11e02 160000 --- a/Peanut +++ b/Peanut @@ -1 +1 @@ -Subproject commit 8d26c3ade562d1a1bac6fae7f35d6af661bbbac5 +Subproject commit 0a11e027a8558199e7c390cc9aac21510998faa1 From 55091590a97d9318909068eece047d3722655b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHEN?= Date: Wed, 10 Jun 2026 17:00:28 +0800 Subject: [PATCH 2/2] fix: degrade VULKAN_SDK check from raise to warning for test-only CI builds --- xmake.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index e39fadc..a02c60b 100644 --- a/xmake.lua +++ b/xmake.lua @@ -13,7 +13,8 @@ add_requires("glfw 3.4") -- ── Vulkan SDK ── local vulkan_sdk = os.getenv("VULKAN_SDK") if not vulkan_sdk then - raise("VULKAN_SDK not set. Install Vulkan SDK 1.4+ and set VULKAN_SDK env var.") + cprint("${bright yellow}VULKAN_SDK not set — Vulkan-dependent targets will fail to build") + vulkan_sdk = "" end -- ── Peanut (static library) ──