Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ concurrency:
jobs:
cpp-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
node_type: cpu16
Expand All @@ -46,7 +46,7 @@ jobs:
python-build:
needs: [cpp-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -64,23 +64,23 @@ jobs:
arch: "amd64"
branch: ${{ inputs.branch }}
build_type: ${{ inputs.build_type || 'branch' }}
container_image: "rapidsai/ci-conda:26.04-latest"
container_image: "rapidsai/ci-conda:26.06-latest"
date: ${{ inputs.date }}
node_type: gpu-l4-latest-1
script: "ci/build_docs.sh"
sha: ${{ inputs.sha }}
upload-conda:
needs: [cpp-build, python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
wheel-build-libnvforest:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -95,7 +95,7 @@ jobs:
wheel-publish-libnvforest:
needs: wheel-build-libnvforest
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -106,7 +106,7 @@ jobs:
wheel-build-nvforest:
needs: wheel-build-libnvforest
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -121,7 +121,7 @@ jobs:
wheel-publish-nvforest:
needs: wheel-build-nvforest
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- wheel-tests-nvforest
# - devcontainer
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
changed-files:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
with:
files_yaml: |
build_docs:
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
checks:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
with:
enable_check_generated_files: false
enable_check_version_against_tag: false # TODO: Take this out after first release
Expand All @@ -145,39 +145,39 @@ jobs:
clang-tidy:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
with:
build_type: pull-request
node_type: "cpu8"
arch: "amd64"
container_image: "rapidsai/ci-conda:26.04-latest"
container_image: "rapidsai/ci-conda:26.06-latest"
script: "ci/run_clang_tidy.sh"
conda-cpp-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
with:
build_type: pull-request
node_type: cpu16
script: ci/build_cpp.sh
conda-cpp-tests:
needs: [conda-cpp-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
with:
build_type: pull-request
script: ci/test_cpp.sh
conda-cpp-checks:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
with:
build_type: pull-request
conda-python-build:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
with:
build_type: pull-request
script: ci/build_python.sh
Expand All @@ -186,7 +186,7 @@ jobs:
conda-python-tests:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_conda
with:
build_type: pull-request
Expand All @@ -195,18 +195,18 @@ jobs:
docs-build:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
if: fromJSON(needs.changed-files.outputs.changed_file_groups).build_docs
with:
build_type: pull-request
node_type: gpu-l4-latest-1
arch: "amd64"
container_image: "rapidsai/ci-conda:26.04-latest"
container_image: "rapidsai/ci-conda:26.06-latest"
script: "ci/build_docs.sh"
wheel-build-libnvforest:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: pull-request
branch: ${{ inputs.branch }}
Expand All @@ -221,7 +221,7 @@ jobs:
wheel-build-nvforest:
needs: [checks, wheel-build-libnvforest]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -233,15 +233,15 @@ jobs:
wheel-tests-nvforest:
needs: [wheel-build-nvforest, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels
with:
build_type: pull-request
script: ci/test_wheel.sh
# devcontainer:
# needs: telemetry-setup
# secrets: inherit
# uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@python-3.14
# uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main
# with:
# arch: '["amd64", "arm64"]'
# cuda: '["13.0"]'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ on:
jobs:
conda-cpp-checks:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
conda-cpp-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -42,7 +42,7 @@ jobs:
sha: ${{ inputs.sha }}
conda-python-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -52,7 +52,7 @@ jobs:
run_codecov: false
wheel-tests-nvforest:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@python-3.14
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.04.00
26.06.00
8 changes: 4 additions & 4 deletions conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.4.*,>=0.0.0a0
- pylibraft==26.6.*,>=0.0.0a0
- pytest
- pytest-cov
- pytest-xdist
- python>=3.11
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- rapids-logger==0.2.*,>=0.0.0a0
- rapids-xgboost==26.4.*,>=0.0.0a0
- rapids-xgboost==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- scikit-learn>=1.5
- sphinx
Expand Down
8 changes: 4 additions & 4 deletions conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.4.*,>=0.0.0a0
- pylibraft==26.6.*,>=0.0.0a0
- pytest
- pytest-cov
- pytest-xdist
- python>=3.11
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- rapids-logger==0.2.*,>=0.0.0a0
- rapids-xgboost==26.4.*,>=0.0.0a0
- rapids-xgboost==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- scikit-learn>=1.5
- sphinx
Expand Down
8 changes: 4 additions & 4 deletions conda/environments/all_cuda-131_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.4.*,>=0.0.0a0
- pylibraft==26.6.*,>=0.0.0a0
- pytest
- pytest-cov
- pytest-xdist
- python>=3.11
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- rapids-logger==0.2.*,>=0.0.0a0
- rapids-xgboost==26.4.*,>=0.0.0a0
- rapids-xgboost==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- scikit-learn>=1.5
- sphinx
Expand Down
8 changes: 4 additions & 4 deletions conda/environments/all_cuda-131_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.4.*,>=0.0.0a0
- pylibraft==26.6.*,>=0.0.0a0
- pytest
- pytest-cov
- pytest-xdist
- python>=3.11
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- rapids-logger==0.2.*,>=0.0.0a0
- rapids-xgboost==26.4.*,>=0.0.0a0
- rapids-xgboost==26.6.*,>=0.0.0a0
- scikit-build-core>=0.11.0
- scikit-learn>=1.5
- sphinx
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft-headers==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- llvm-openmp==15.0.7
- ninja
- sysroot_linux-64==2.28
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/clang_tidy_cuda-131_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft-headers==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- llvm-openmp==15.0.7
- ninja
- sysroot_linux-64==2.28
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/cpp_all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft-headers==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- sysroot_linux-64==2.28
name: cpp_all_cuda-129_arch-x86_64
4 changes: 2 additions & 2 deletions conda/environments/cpp_all_cuda-131_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencies:
- libcurand-dev
- libcusolver-dev
- libcusparse-dev
- libraft-headers==26.4.*,>=0.0.0a0
- librmm==26.4.*,>=0.0.0a0
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- ninja
- sysroot_linux-64==2.28
name: cpp_all_cuda-131_arch-x86_64
Loading
Loading