From ddba159b5128858de7e2948a77ef08b4b53d8c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Fri, 8 Nov 2024 02:10:08 +0100 Subject: [PATCH] ci/win32: restrict shaderc version to fix build errors The same as 87826224a296d744a8add8b8dc47b0c5713b453f. --- ci/build-win32.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build-win32.ps1 b/ci/build-win32.ps1 index ed00e82b9d..137f4ad738 100644 --- a/ci/build-win32.ps1 +++ b/ci/build-win32.ps1 @@ -8,7 +8,7 @@ if (-not (Test-Path $subprojects)) { # Wrap shaderc to run git-sync-deps and patch unsupported generator expression if (-not (Test-Path "$subprojects/shaderc_cmake")) { - git clone https://github.com/google/shaderc --depth 1 $subprojects/shaderc_cmake + git clone https://github.com/google/shaderc --depth 1 -b v2024.3 $subprojects/shaderc_cmake Set-Content -Path "$subprojects/shaderc_cmake/p.diff" -Value @' diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index d44f62a..54d4719 100644