CI: Do not checkout zlib

This commit is contained in:
Megamouse 2025-06-13 02:05:15 +02:00
parent d61c2496b6
commit f8f34787b3
5 changed files with 9 additions and 11 deletions

View file

@ -6,9 +6,9 @@ shellcheck .ci/*.sh
git config --global --add safe.directory '*'
# Pull all the submodules except llvm, opencv, sdl and curl
# Pull all the submodules except some
# shellcheck disable=SC2046
git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl-org/ && !/curl/ { print $3 }' .gitmodules)
git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl-org/ && !/curl/ && !/zlib/ { print $3 }' .gitmodules)
mkdir build && cd build || exit 1