-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds cudf-pandas-integration to nightly-pipeline (#38)
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
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ jobs: | |
repos: >- | ||
rapidsai/cucim | ||
rapidsai/cudf | ||
rapidsai/cudf-pandas-integration | ||
rapidsai/cugraph | ||
rapidsai/cugraph-ops | ||
rapidsai/cuml | ||
|
@@ -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.
Sorry, something went wrong. |
||
propagate_failure: true | ||
trigger_workflow: true | ||
wait_workflow: true | ||
cuopt-build: | ||
needs: [get-run-info, rmm-build, raft-build, cudf-build] | ||
if: ${{ !cancelled() }} | ||
|
CI is failing after merging this PR. Is this line problematic? What does this line actually do?