Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add integration test workflow. #59

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
rapidsai/cuxfilter
rapidsai/dask-cuda
rapidsai/docker
rapidsai/integration
rapidsai/kvikio
rapidsai/rapids-cmake
rapidsai/raft
Expand Down Expand Up @@ -653,6 +654,41 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
integration-test:
needs:
- get-run-info
- cucim-build
- cudf-build
- cugraph-build
- cugraph-ops-build
- cuml-build
- cumlprims_mg-build
- cuspatial-build
- cuxfilter-build
- dask-cuda-build
- kvikio-build
- raft-build
- rapids-cmake-build
- rmm-build
- ucx-py-build
- ucxx-build
- wholegraph-build
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- uses: rapidsai/trigger-workflow-and-wait@v1
with:
owner: rapidsai
repo: integration
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.integration) }}
propagate_failure: true
trigger_workflow: true
wait_workflow: true
docker-build-and-test:
needs:
- get-run-info
Expand Down