From 84c2553625d4e853e464f307a9e84d0fa4a2a63b Mon Sep 17 00:00:00 2001 From: ptaylor Date: Fri, 22 May 2026 13:38:55 -0700 Subject: [PATCH 1/2] build cuvs in CI job that also builds cugraph --- .github/workflows/build-all-rapids-repos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-all-rapids-repos.yml b/.github/workflows/build-all-rapids-repos.yml index 4cfefe68..7fe53ad8 100644 --- a/.github/workflows/build-all-rapids-repos.yml +++ b/.github/workflows/build-all-rapids-repos.yml @@ -44,7 +44,7 @@ jobs: include: - libs: "rmm ucxx kvikio dask-cuda cudf cudf_kafka rapidsmpf" - libs: "rmm ucxx dask-cuda raft cuvs nvforest cuml cuopt" - - libs: "rmm ucxx dask-cuda raft cugraph cugraph-gnn nx-cugraph" + - libs: "rmm ucxx dask-cuda raft cuvs cugraph cugraph-gnn nx-cugraph" with: arch: '["amd64", "arm64"]' From 179c38fb519240152936f8a55bdeb0de93473a41 Mon Sep 17 00:00:00 2001 From: ptaylor Date: Fri, 22 May 2026 13:51:46 -0700 Subject: [PATCH 2/2] add a job that builds all repos --- .github/workflows/build-all-rapids-repos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-all-rapids-repos.yml b/.github/workflows/build-all-rapids-repos.yml index 7fe53ad8..2a79bfa6 100644 --- a/.github/workflows/build-all-rapids-repos.yml +++ b/.github/workflows/build-all-rapids-repos.yml @@ -27,7 +27,7 @@ jobs: || echo "ok=false" | tee -a "$GITHUB_OUTPUT"; build-all-rapids-repos: - name: ${{ matrix.libs }} + name: ${{ matrix.libs || 'all' }} if: needs.check-event.outputs.ok == 'true' needs: check-event secrets: inherit # zizmor: ignore[secrets-inherit] @@ -45,6 +45,7 @@ jobs: - libs: "rmm ucxx kvikio dask-cuda cudf cudf_kafka rapidsmpf" - libs: "rmm ucxx dask-cuda raft cuvs nvforest cuml cuopt" - libs: "rmm ucxx dask-cuda raft cuvs cugraph cugraph-gnn nx-cugraph" + - libs: "" with: arch: '["amd64", "arm64"]'