Skip to content

Commit

Permalink
Add rapids-cmake to pipeline (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Jul 24, 2023
1 parent ac1a60b commit a89e0ef
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/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]
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

0 comments on commit a89e0ef

Please sign in to comment.