diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index ceed525..06fee99 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -48,16 +48,12 @@ jobs: - '!notebooks/**' - '!python/**' - '!readme_pages/**' - # TODO: Remove this before merging - - '!.github/**' test_notebooks: - '**' - '!.devcontainers/**' - '!CONTRIBUTING.md' - '!README.md' - '!docs/**' - # TODO: Remove this before merging - - '!.github/**' test_python: - '**' - '!.devcontainers/**' @@ -66,8 +62,6 @@ jobs: - '!docs/**' - '!img/**' - '!notebooks/**' - # TODO: Remove this before merging - - '!.github/**' checks: secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.12 diff --git a/ci/build_python.sh b/ci/build_python.sh index 7c6cb10..365720a 100755 --- a/ci/build_python.sh +++ b/ci/build_python.sh @@ -23,6 +23,7 @@ echo "${version}" > VERSION rapids-logger "Begin py build" package_dir="python" + for package_name in pylibwholegraph cugraph-pyg cugraph-dgl; do underscore_package_name=$(echo "${package_name}" | tr "-" "_") sed -i "/^__git_commit__/ s/= .*/= \"${git_commit}\"/g" "${package_dir}/${package_name}/${underscore_package_name}/_version.py"