Skip to content

Commit

Permalink
Add integration test workflow. (#59)
Browse files Browse the repository at this point in the history
Companion PR to enable nightly testing for
rapidsai/integration#690.
  • Loading branch information
bdice authored Sep 3, 2024
1 parent 0b0c853 commit 8c5866c
Showing 1 changed file with 36 additions and 0 deletions.
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

0 comments on commit 8c5866c

Please sign in to comment.