From 0eab77371bb2462dbecf8e6cb534aadc387735af Mon Sep 17 00:00:00 2001 From: Ray Douglass <3107146+raydouglass@users.noreply.github.com> Date: Fri, 28 Jul 2023 19:42:03 -0400 Subject: [PATCH 1/2] Remove push condition on docs-build --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index eb61be9894..2149f434bf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -54,7 +54,7 @@ jobs: sha: ${{ inputs.sha }} skip_upload_pkgs: libraft-template docs-build: - if: github.ref_type == 'branch' && github.event_name == 'push' + if: github.ref_type == 'branch' needs: python-build secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.08 From 4c6ffb95bfb16a810f5de96b18aa76ab19b84e46 Mon Sep 17 00:00:00 2001 From: Ray Douglass Date: Fri, 28 Jul 2023 20:02:23 -0400 Subject: [PATCH 2/2] Update docs-build to match cudf --- .github/workflows/build.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2149f434bf..fd42a2842c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -59,11 +59,14 @@ jobs: secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/custom-job.yaml@branch-23.08 with: - build_type: branch - node_type: "gpu-latest-1" arch: "amd64" + branch: ${{ inputs.branch }} + build_type: ${{ inputs.build_type || 'branch' }} container_image: "rapidsai/ci:latest" + date: ${{ inputs.date }} + node_type: "gpu-v100-latest-1" run_script: "ci/build_docs.sh" + sha: ${{ inputs.sha }} wheel-build-pylibraft: secrets: inherit uses: rapidsai/shared-action-workflows/.github/workflows/wheels-build.yaml@branch-23.08