Skip to content

Select build target 'libcuml'. #1244

Select build target 'libcuml'.

Select build target 'libcuml'. #1244

Workflow file for this run

name: pr
on:
push:
branches:
- "pull-request/[0-9]+"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pr-builder:
needs:
- checks
- clang-tidy
# - conda-cpp-build
# - conda-cpp-tests
# - conda-python-build
# - conda-python-tests-singlegpu
# - conda-python-tests-dask
# - conda-notebook-tests
# - docs-build
# - wheel-build-cuml
# - wheel-tests-cuml
secrets: inherit
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
checks:
secrets: inherit
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
with:
enable_check_generated_files: false
clang-tidy:
needs: checks
secrets: inherit
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
with:
build_type: pull-request
node_type: "cpu8"
arch: "amd64"
container_image: "rapidsai/ci:latest"
run_script: "ci/run_clang_tidy.sh"
# conda-cpp-build:
# needs: checks
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# conda-cpp-tests:
# needs: conda-cpp-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# conda-python-build:
# needs: conda-cpp-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# conda-python-tests-singlegpu:
# needs: conda-python-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# test_script: "ci/test_python_singlegpu.sh"
# conda-python-tests-dask:
# needs: conda-python-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# test_script: "ci/test_python_dask.sh"
# conda-notebook-tests:
# needs: conda-python-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# node_type: "gpu-v100-latest-1"
# arch: "amd64"
# container_image: "rapidsai/ci:latest"
# run_script: "ci/test_notebooks.sh"
# docs-build:
# needs: conda-python-build
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# node_type: "gpu-v100-latest-1"
# arch: "amd64"
# container_image: "rapidsai/ci:latest"
# run_script: "ci/build_docs.sh"
# wheel-build-cuml:
# needs: checks
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# package-name: cuml
# package-dir: python
# extra-repo: rapidsai/cumlprims_mg
# extra-repo-sha: branch-23.02
# extra-repo-deploy-key: CUMLPRIMS_SSH_PRIVATE_DEPLOY_KEY
# skbuild-configure-options: "-DCUML_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF -DDISABLE_DEPRECATION_WARNINGS=ON -DCPM_cumlprims_mg_SOURCE=${GITHUB_WORKSPACE}/python/cumlprims_mg/"
# wheel-tests-cuml:
# needs: wheel-build-cuml
# secrets: inherit
# uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
# with:
# build_type: pull-request
# package-name: cuml
# # Always want to test against latest dask/distributed.
# test-before-amd64: "pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/[email protected]"
# # On arm also need to install CMake because treelite needs to be compiled (no wheels available for arm).
# test-before-arm64: "pip install cmake && pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/[email protected]"
# # parallelization is based on current test memory usage
# test-unittest: "python -m pytest ./python/cuml/tests -k 'not test_sparse_pca_inputs' -n 8 --ignore=python/cuml/tests/dask && python -m pytest ./python/cuml/tests -k 'test_sparse_pca_inputs' && python -m pytest ./python/cuml/tests/dask"
# test-smoketest: "python ci/wheel_smoke_test_cuml.py"