feat: add rapids doctor smoketest to stable install tests#839
Merged
Conversation
gforsyth
commented
Apr 30, 2026
Comment on lines
+66
to
+103
| stable-install-pip-test-matrix: | ||
| secrets: inherit | ||
| uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@main | ||
| with: | ||
| build_type: nightly | ||
| matrix_name: wheels-test | ||
| test-stable-install-pip: | ||
| needs: stable-install-pip-test-matrix | ||
| uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: ${{ fromJSON(needs.stable-install-pip-test-matrix.outputs.matrix) }} | ||
| with: | ||
| build_type: pull-request | ||
| arch: "${{matrix.ARCH}}" | ||
| node_type: "gpu-${{ matrix.GPU }}-latest-1" | ||
| container_image: "rapidsai/citestwheel:26.04-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}" | ||
| script: | | ||
| ./ci/stable_install/install_and_test_pip.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }} | ||
| stable-install-conda-test-matrix: | ||
| secrets: inherit | ||
| uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@main | ||
| with: | ||
| build_type: nightly | ||
| matrix_name: conda-python-tests | ||
| test-stable-install-conda: | ||
| needs: stable-install-conda-test-matrix | ||
| uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: ${{ fromJSON(needs.stable-install-conda-test-matrix.outputs.matrix) }} | ||
| with: | ||
| build_type: pull-request | ||
| node_type: "gpu-${{ matrix.GPU }}-latest-1" | ||
| arch: "${{ matrix.ARCH }}" | ||
| container_image: "rapidsai/ci-conda:26.04-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}" | ||
| script: | | ||
| ./ci/stable_install/install_and_test_conda.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }} |
Contributor
Author
There was a problem hiding this comment.
This will get reverted before merging, just here for testing the changes in this PR
jameslamb
approved these changes
May 4, 2026
… changes" This reverts commit 0c0c2bc.
Contributor
Author
|
/merge |
rapids-bot Bot
pushed a commit
that referenced
this pull request
Jun 24, 2026
We recently release rapids-cli 0.2.0 so I thought this could be updated here. For the record we do have teh release in pypi and in the rapidsai channel for conda. I think I cover all the places, but let me know if I missed something. I wasn't quite sure how or if it's possible to to test this locally, though. cc; @gforsyth since you put up this one initially #839 Authors: - Naty Clementi (https://github.com/ncclementi) Approvers: - Gil Forsyth (https://github.com/gforsyth) URL: #854
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
xref rapidsai/build-planning#226
Adding a
rapids-clismoke test -- this currently clones from upstreammainforrapids-cli-- once there is a more regular release cadence, we can pull from PyPI.