We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047063c commit 43e4252Copy full SHA for 43e4252
python/graphscope/gsctl/scripts/install_deps.sh
@@ -600,9 +600,11 @@ install_libgrape_lite() {
600
pushd "${tempdir}" || exit
601
git clone -b ${branch} https://github.com/alibaba/libgrape-lite.git
602
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
604
cmake . -DCMAKE_BUILD_TYPE=Release \
605
-DCMAKE_INSTALL_PREFIX="${install_prefix}" \
- -DBUILD_LIBGRAPELITE_TESTS=OFF
606
+ -DBUILD_LIBGRAPELITE_TESTS=OFF \
607
+ -DCMAKE_POLICY_VERSION_MINIMUM=3.5
608
make -j$(nproc)
609
make install
610
popd || exit
0 commit comments