diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index a5f7feed39d..ba106d34a46 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -43,6 +43,9 @@ popd export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/ +# Skip benchmark tests inside of CI +export GTEST_FILTER="-*benchmark*" + # Run libcugraph gtests from libcugraph-tests package rapids-logger "Run gtests" ./ci/run_ctests.sh -j10 && EXITCODE=$? || EXITCODE=$?; diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 177145cc44c..5885d154aa5 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -12,7 +12,7 @@ dependencies: - aiohttp - breathe - c-compiler -- cmake>=3.26.4 +- cmake>=3.26.4,!=3.30.0 - cuda-nvtx - cuda-version=11.8 - cudatoolkit diff --git a/conda/environments/all_cuda-122_arch-x86_64.yaml b/conda/environments/all_cuda-122_arch-x86_64.yaml index 9b77955e0fc..c48f3b386d5 100644 --- a/conda/environments/all_cuda-122_arch-x86_64.yaml +++ b/conda/environments/all_cuda-122_arch-x86_64.yaml @@ -12,7 +12,7 @@ dependencies: - aiohttp - breathe - c-compiler -- cmake>=3.26.4 +- cmake>=3.26.4,!=3.30.0 - cuda-cudart-dev - cuda-nvcc - cuda-nvtx-dev diff --git a/conda/recipes/cugraph-pyg/conda_build_config.yaml b/conda/recipes/cugraph-pyg/conda_build_config.yaml index 2d7aff185c2..47d98b4800b 100644 --- a/conda/recipes/cugraph-pyg/conda_build_config.yaml +++ b/conda/recipes/cugraph-pyg/conda_build_config.yaml @@ -10,7 +10,7 @@ cuda_compiler: - nvcc cmake_version: - - ">=3.26.4" + - ">=3.26.4,!=3.30.0" c_stdlib: - sysroot diff --git a/conda/recipes/cugraph/conda_build_config.yaml b/conda/recipes/cugraph/conda_build_config.yaml index 8d24a54952f..0c73036610f 100644 --- a/conda/recipes/cugraph/conda_build_config.yaml +++ b/conda/recipes/cugraph/conda_build_config.yaml @@ -11,7 +11,7 @@ cuda11_compiler: - nvcc cmake_version: - - ">=3.26.4" + - ">=3.26.4,!=3.30.0" c_stdlib: - sysroot diff --git a/conda/recipes/libcugraph/conda_build_config.yaml b/conda/recipes/libcugraph/conda_build_config.yaml index b4143f54d18..26aa428d7f5 100644 --- a/conda/recipes/libcugraph/conda_build_config.yaml +++ b/conda/recipes/libcugraph/conda_build_config.yaml @@ -11,7 +11,7 @@ cuda11_compiler: - nvcc cmake_version: - - ">=3.26.4" + - ">=3.26.4,!=3.30.0" doxygen_version: - ">=1.8.11" diff --git a/conda/recipes/pylibcugraph/conda_build_config.yaml b/conda/recipes/pylibcugraph/conda_build_config.yaml index 8d24a54952f..0c73036610f 100644 --- a/conda/recipes/pylibcugraph/conda_build_config.yaml +++ b/conda/recipes/pylibcugraph/conda_build_config.yaml @@ -11,7 +11,7 @@ cuda11_compiler: - nvcc cmake_version: - - ">=3.26.4" + - ">=3.26.4,!=3.30.0" c_stdlib: - sysroot diff --git a/dependencies.yaml b/dependencies.yaml index 5abe2baf21a..03f4760b6d1 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -376,7 +376,7 @@ dependencies: common: - output_types: [conda, pyproject] packages: - - &cmake_ver cmake>=3.26.4 + - &cmake_ver cmake>=3.26.4,!=3.30.0 - ninja cpp_build: common: diff --git a/python/cugraph/pyproject.toml b/python/cugraph/pyproject.toml index e8785e53fd1..218868da000 100644 --- a/python/cugraph/pyproject.toml +++ b/python/cugraph/pyproject.toml @@ -79,7 +79,7 @@ regex = "(?P.*)" [tool.rapids-build-backend] build-backend = "scikit_build_core.build" requires = [ - "cmake>=3.26.4", + "cmake>=3.26.4,!=3.30.0", "ninja", "pylibcugraph==24.8.*,>=0.0.0a0", "pylibraft==24.8.*,>=0.0.0a0", diff --git a/python/pylibcugraph/pyproject.toml b/python/pylibcugraph/pyproject.toml index 23b305ac406..984e1d140f2 100644 --- a/python/pylibcugraph/pyproject.toml +++ b/python/pylibcugraph/pyproject.toml @@ -67,7 +67,7 @@ regex = "(?P.*)" build-backend = "scikit_build_core.build" dependencies-file = "../../dependencies.yaml" requires = [ - "cmake>=3.26.4", + "cmake>=3.26.4,!=3.30.0", "ninja", "pylibraft==24.8.*,>=0.0.0a0", "rmm==24.8.*,>=0.0.0a0",