test #46
This file contains 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
name: test | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
required: true | |
type: string | |
date: | |
required: true | |
type: string | |
sha: | |
required: true | |
type: string | |
jobs: | |
conda-cpp-tests: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02 | |
with: | |
build_type: nightly | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
conda-notebook-tests: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02 | |
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks | |
with: | |
build_type: pull-request | |
node_type: "gpu-v100-latest-1" | |
arch: "amd64" | |
container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.12" | |
run_script: "ci/test_notebooks.sh" | |
conda-python-tests: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02 | |
with: | |
build_type: nightly | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not))) | |
wheel-tests-pylibwholegraph: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02 | |
with: | |
build_type: nightly | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: ci/test_wheel_pylibwholegraph.sh | |
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not))) | |
wheel-tests-cugraph-dgl: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02 | |
with: | |
build_type: nightly | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: ci/test_wheel_cugraph-dgl.sh | |
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not) and (.LINUX_VER != "rockylinux8"))) | |
wheel-tests-cugraph-pyg: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02 | |
with: | |
build_type: nightly | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: ci/test_wheel_cugraph-pyg.sh | |
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not))) |