Skip to content

Commit

Permalink
Add wholegraph to nighlty pipeline (#34)
Browse files Browse the repository at this point in the history
Just adds wholegraph to the nightly pipeline. It should only depend on
`rmm` & `raft` based on the recipes.
  • Loading branch information
raydouglass authored Sep 29, 2023
1 parent c8a9e2f commit 797fa2b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
rapidsai/rmm
rapidsai/ucxx
rapidsai/ucx-py
rapidsai/wholegraph
rmm-build:
needs: [get-run-info]
if: ${{ !cancelled() }}
Expand Down Expand Up @@ -598,6 +599,42 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
wholegraph-build:
needs: [get-run-info, rmm-build, raft-build]
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: rapidsai
repo: wholegraph
github_token: ${{ secrets.WORKFLOW_TOKEN }}
github_user: GPUtester
workflow_file_name: build.yaml
ref: ${{ fromJSON(needs.get-run-info.outputs.obj).branch }}
wait_interval: 120
client_payload: ${{ toJSON(fromJSON(needs.get-run-info.outputs.obj).payloads.wholegraph) }}
propagate_failure: true
trigger_workflow: true
wait_workflow: true
wholegraph-tests:
needs: [get-run-info, wholegraph-build]
if: ${{ needs.wholegraph-build.result == 'success' && !cancelled() && inputs.run_tests }}
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: rapidsai
repo: wholegraph
github_token: ${{ secrets.WORKFLOW_TOKEN }}
github_user: GPUtester
workflow_file_name: test.yaml
ref: ${{ fromJSON(needs.get-run-info.outputs.obj).branch }}
wait_interval: 120
client_payload: ${{ toJSON(fromJSON(needs.get-run-info.outputs.obj).payloads.wholegraph) }}
propagate_failure: true
trigger_workflow: true
wait_workflow: true
docker-build-and-test:
needs:
- get-run-info
Expand All @@ -616,6 +653,7 @@ jobs:
- rmm-build
- ucx-py-build
- ucxx-build
- wholegraph-build
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 797fa2b

Please sign in to comment.