Skip to content

Commit 43e4252

Browse files
authored
ci: Configure cmake_minimum_version to 3.5 when installing libgrape-lite (#4596)
https://github.com/alibaba/GraphScope/actions/runs/14216252611/job/39833569906?pr=4591
1 parent 047063c commit 43e4252

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/graphscope/gsctl/scripts/install_deps.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,9 +600,11 @@ install_libgrape_lite() {
600600
pushd "${tempdir}" || exit
601601
git clone -b ${branch} https://github.com/alibaba/libgrape-lite.git
602602
cd libgrape-lite
603+
# Configure the minimum required version of cmake to 3.5: https://github.com/alibaba/GraphScope/actions/runs/14216252611/job/39833569906?pr=4591
603604
cmake . -DCMAKE_BUILD_TYPE=Release \
604605
-DCMAKE_INSTALL_PREFIX="${install_prefix}" \
605-
-DBUILD_LIBGRAPELITE_TESTS=OFF
606+
-DBUILD_LIBGRAPELITE_TESTS=OFF \
607+
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
606608
make -j$(nproc)
607609
make install
608610
popd || exit

0 commit comments

Comments
 (0)