Skip to content

Commit

Permalink
Add rapidsai/docker to nightly pipeline (#29)
Browse files Browse the repository at this point in the history
Adds `rapidsai/docker` to the nightly pipeline.

This implementation differs from other repositories because the `docker`
repo workflows combine build & test in a single workflow due to using
temporary images during testing. I think a future enhancement should be
to refactor the `docker` workflows to allow for split builds and tests
which would be more flexible.

Depends on rapidsai/docker#565
  • Loading branch information
raydouglass authored Aug 4, 2023
1 parent fa3b278 commit 3ccbb0e
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 @@ -35,6 +35,7 @@ jobs:
rapidsai/cuspatial
rapidsai/cuxfilter
rapidsai/dask-cuda
rapidsai/docker
rapidsai/kvikio
rapidsai/rapids-cmake
rapidsai/raft
Expand Down Expand Up @@ -634,3 +635,38 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
docker-build-and-test:
needs:
- get-run-info
- cucim-build
- cudf-build
- cugraph-build
- cugraph-ops-build
- cuml-build
- cumlprims_mg-build
- cusignal-build
- cuspatial-build
- cuxfilter-build
- dask-cuda-build
- kvikio-build
- raft-build
- rapids-cmake-build
- rmm-build
- ucx-py-build
- ucxx-build
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- uses: convictional/trigger-workflow-and-wait@v1.6.5
with:
owner: rapidsai
repo: docker
github_token: ${{ secrets.WORKFLOW_TOKEN }}
github_user: GPUtester
workflow_file_name: publish.yaml
ref: ${{ fromJSON(needs.get-run-info.outputs.obj).branch }}
wait_interval: 120
client_payload: '{"run_tests": ${{ inputs.run_tests }} }'
propagate_failure: true
trigger_workflow: true
wait_workflow: true

0 comments on commit 3ccbb0e

Please sign in to comment.