test #683
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 | |
build_type: | |
type: string | |
default: nightly | |
jobs: | |
conda-cpp-checks: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
enable_check_symbols: true | |
symbol_exclusions: raft_cutlass | |
conda-cpp-tests: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
conda-python-tests-singlegpu: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: "ci/test_python_singlegpu.sh" | |
conda-python-tests-dask: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: "ci/test_python_dask.sh" | |
conda-python-scikit-learn-accel-tests: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: "ci/test_python_scikit_learn_tests.sh" | |
wheel-tests-cuml: | |
secrets: inherit | |
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.04 | |
with: | |
build_type: ${{ inputs.build_type }} | |
branch: ${{ inputs.branch }} | |
date: ${{ inputs.date }} | |
sha: ${{ inputs.sha }} | |
script: ci/test_wheel.sh |