diff --git a/.ci/build-freebsd.sh b/.ci/build-freebsd.sh index 8b8eef7f5f..3244f1a3cf 100755 --- a/.ci/build-freebsd.sh +++ b/.ci/build-freebsd.sh @@ -1,9 +1,9 @@ #!/bin/sh -ex -# Pull all the submodules except llvm and opencv +# Pull all the submodules except llvm, opencv, libpng, sdl and curl # Note: Tried to use git submodule status, but it takes over 20 seconds # shellcheck disable=SC2046 -git submodule -q update --init --depth 1 $(awk '/path/ && !/llvm/ && !/opencv/ { print $3 }' .gitmodules) +git submodule -q update --init --depth 1 $(awk '/path/ && !/llvm/ && !/opencv/ && !/libpng/ && !/libsdl-org/ && !/curl/ { print $3 }' .gitmodules) CONFIGURE_ARGS=" -DWITH_LLVM=ON diff --git a/.ci/build-linux-aarch64.sh b/.ci/build-linux-aarch64.sh index c0f1720142..fb7e6193a0 100755 --- a/.ci/build-linux-aarch64.sh +++ b/.ci/build-linux-aarch64.sh @@ -6,9 +6,9 @@ fi git config --global --add safe.directory '*' -# Pull all the submodules except llvm and opencv +# Pull all the submodules except llvm, opencv, sdl and curl # shellcheck disable=SC2046 -git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ { print $3 }' .gitmodules) +git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl-org/ && !/curl/ { print $3 }' .gitmodules) mkdir build && cd build || exit 1 diff --git a/.ci/build-linux.sh b/.ci/build-linux.sh index f323dab8ec..a8d887e0d5 100755 --- a/.ci/build-linux.sh +++ b/.ci/build-linux.sh @@ -6,10 +6,10 @@ fi git config --global --add safe.directory '*' -# Pull all the submodules except llvm and opencv +# Pull all the submodules except llvm, opencv, sdl and curl # Note: Tried to use git submodule status, but it takes over 20 seconds # shellcheck disable=SC2046 -git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ { print $3 }' .gitmodules) +git submodule -q update --init $(awk '/path/ && !/llvm/ && !/opencv/ && !/libsdl-org/ && !/curl/ { print $3 }' .gitmodules) mkdir build && cd build || exit 1