Skip to content

Commit

Permalink
Adds cudf-pandas-integration to nightly-pipeline (#38)
Browse files Browse the repository at this point in the history
This PR adds `cudf-pandas-integration` nightly tests to rapids
nightly-pipeline. The tests are triggered after cudf nightly is built.

closes rapidsai/cudf-pandas-integration#67

---------

Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
isVoid and bdice authored Nov 9, 2023
1 parent 9fff69a commit 8c71f41
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
repos: >-
rapidsai/cucim
rapidsai/cudf
rapidsai/cudf-pandas-integration
rapidsai/cugraph
rapidsai/cugraph-ops
rapidsai/cuml
Expand Down Expand Up @@ -185,6 +186,24 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
cudf-pandas-integration-tests:
needs: [get-run-info, cudf-build]
if: ${{ needs.cudf-build.result == 'success' && !cancelled() && inputs.run_tests }}
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: rapidsai
repo: cudf-pandas-integration
github_token: ${{ secrets.WORKFLOW_TOKEN }}
github_user: GPUtester
workflow_file_name: nightly.yaml
ref: ${{ fromJSON(needs.get-run-info.outputs.obj).branch }}
wait_interval: 120
client_payload: ${{ toJSON(fromJSON(needs.get-run-info.outputs.obj).payloads.cudf-pandas-integration) }}

This comment has been minimized.

Copy link
@bdice

bdice Nov 13, 2023

Author Contributor

CI is failing after merging this PR. Is this line problematic? What does this line actually do?

propagate_failure: true
trigger_workflow: true
wait_workflow: true
cuopt-build:
needs: [get-run-info, rmm-build, raft-build, cudf-build]
if: ${{ !cancelled() }}
Expand Down

0 comments on commit 8c71f41

Please sign in to comment.