From 96e992bd2673c61080b03ebe7eb6df7dd12b4490 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Tue, 4 Jul 2023 09:28:58 +0200 Subject: [PATCH] CI: Ignore FAudio submodule in windows builds --- .ci/setup-windows.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/setup-windows.sh b/.ci/setup-windows.sh index 614ca9e98b..adbf1e332f 100755 --- a/.ci/setup-windows.sh +++ b/.ci/setup-windows.sh @@ -40,7 +40,7 @@ DEP_URLS=" \ # Pull all the submodules except llvm, since it is built separately and we just download that build # Note: Tried to use git submodule status, but it takes over 20 seconds # shellcheck disable=SC2046 -git submodule -q update --init --depth=1 --jobs=8 $(awk '/path/ && !/llvm/ && !/SPIRV/ { print $3 }' .gitmodules) +git submodule -q update --init --depth=1 --jobs=8 $(awk '/path/ && !/FAudio/ && !/llvm/ && !/SPIRV/ { print $3 }' .gitmodules) # Git bash doesn't have rev, so here it is rev()