Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,16 @@ jobs:
# just using the workflow to get the matrix, this isn't actually building anything we want to upload
upload-artifacts: false
stable-install-pip-test-matrix:
if: github.base_ref == 'main'
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@release/26.06
with:
build_type: nightly
matrix_name: wheels-test
# TODO: add custom dependency matrix for stable install tests
matrix_filter: map(select(.CUDA_VER != "13.2.0"))
permissions:
contents: read
Comment on lines +38 to +41

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you want to skip this test on release branches, you probably want something like this?

if: github.base_ref == 'main'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea -- just pushed that up

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow, actually I just pushed it to main directly -- need to make sure the permissions on this repo are set correctly...

test-stable-install-pip:
needs: stable-install-pip-test-matrix
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.06
Expand All @@ -48,11 +53,16 @@ jobs:
script: |
./ci/stable_install/install_and_test_pip.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }}
stable-install-conda-test-matrix:
if: github.base_ref == 'main'
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@release/26.06
with:
build_type: nightly
matrix_name: conda-python-tests
# TODO: add custom dependency matrix for stable install tests
matrix_filter: map(select(.CUDA_VER != "13.2.0"))
permissions:
contents: read
test-stable-install-conda:
needs: stable-install-conda-test-matrix
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.06
Expand Down
Loading