summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2024-02-12 14:37:19 +0100
committersfan5 <sfan5@live.de>2024-02-12 14:42:29 +0100
commit09606b9db9e228ac80cadb5fd7875ad60c9bd178 (patch)
treef092e23d3027c90f21611317f3cc2fe0cc527091 /ci
parent4981690fb63ca2b30fad1cf424e6a11234e34fa8 (diff)
downloadmpv-09606b9db9e228ac80cadb5fd7875ad60c9bd178.tar.bz2
mpv-09606b9db9e228ac80cadb5fd7875ad60c9bd178.tar.xz
ci/mingw: pin Vulkan version again
With 1.3.277 the AV1 decode headers have been upstreamed. These get preferred over ffmpeg's internal non-standard header for this extension (same name). FFmpeg currently only builds using its own header and a patch to work with upstream ones is in review. For now pin vulkan at the version before that to unbreak our CI.
Diffstat (limited to 'ci')
-rwxr-xr-xci/build-mingw64.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/build-mingw64.sh b/ci/build-mingw64.sh
index 69dd7e53a7..05ef88fe8d 100755
--- a/ci/build-mingw64.sh
+++ b/ci/build-mingw64.sh
@@ -162,7 +162,7 @@ _spirv_cross () {
_spirv_cross_mark=lib/libspirv-cross-c-shared.dll.a
_vulkan_headers () {
- [ -d Vulkan-Headers ] || $gitclone https://github.com/KhronosGroup/Vulkan-Headers
+ [ -d Vulkan-Headers ] || $gitclone https://github.com/KhronosGroup/Vulkan-Headers -b v1.3.276
builddir Vulkan-Headers
cmake .. "${cmake_args[@]}"
makeplusinstall
@@ -171,7 +171,7 @@ _vulkan_headers () {
_vulkan_headers_mark=include/vulkan/vulkan.h
_vulkan_loader () {
- [ -d Vulkan-Loader ] || $gitclone https://github.com/KhronosGroup/Vulkan-Loader
+ [ -d Vulkan-Loader ] || $gitclone https://github.com/KhronosGroup/Vulkan-Loader -b v1.3.276
builddir Vulkan-Loader
cmake .. "${cmake_args[@]}" \
-DENABLE_WERROR=OFF