From 22c8268f022d92a88535b75de1a88a7e05b8fbaa Mon Sep 17 00:00:00 2001 From: Zach H Date: Thu, 11 Sep 2025 14:50:31 -0400 Subject: [PATCH] Require min 3.10 for external deps (#6119) --- .ci/compile.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/compile.sh b/.ci/compile.sh index ffe733c72..2938e0902 100755 --- a/.ci/compile.sh +++ b/.ci/compile.sh @@ -95,6 +95,9 @@ fi mkdir -p "$BUILD_DIR" cd "$BUILD_DIR" +# Set minimum CMake Version +export CMAKE_POLICY_VERSION_MINIMUM=3.10 + # Add cmake flags flags=("-DCMAKE_BUILD_TYPE=$BUILDTYPE") if [[ $MAKE_SERVER ]]; then