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 rapids-cmake to pipeline #18

Merged
merged 1 commit into from
Jul 24, 2023
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/kvikio
rapidsai/rapids-cmake
rapidsai/raft
rapidsai/rmm
rapidsai/ucxx
Expand Down Expand Up @@ -75,6 +76,41 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
rapids-cmake-build:
needs: get-run-info
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: rapidsai
repo: rapids-cmake
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.rapids-cmake) }}
propagate_failure: true
trigger_workflow: true
wait_workflow: true
rapids-cmake-tests:
needs: [get-run-info, rapids-cmake-build]
vyasr marked this conversation as resolved.
Show resolved Hide resolved
if: ${{ needs.rapids-cmake-build.result == 'success' && inputs.run_tests }}
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: rapidsai
repo: rapids-cmake
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.rapids-cmake) }}
propagate_failure: true
trigger_workflow: true
wait_workflow: true
kvikio-build:
needs: get-run-info
runs-on: ubuntu-latest
Expand Down