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
18 changes: 9 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
node_type: cpu16
Expand All @@ -60,7 +60,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -79,12 +79,12 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
with:
arch: "amd64"
branch: ${{ inputs.branch }}
build_type: ${{ inputs.build_type || 'branch' }}
container_image: "rapidsai/ci-conda:26.06-latest"
container_image: "rapidsai/ci-conda:26.08-latest"
date: ${{ inputs.date }}
node_type: gpu-l4-latest-1
script: "ci/build_docs.sh"
Expand All @@ -97,7 +97,7 @@ jobs:
id-token: write
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
secrets:
CONDA_RAPIDSAI_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_NIGHTLY_TOKEN }}
CONDA_RAPIDSAI_TOKEN: ${{ secrets.CONDA_RAPIDSAI_TOKEN }}
Expand All @@ -114,7 +114,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -134,7 +134,7 @@ jobs:
id-token: write
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
secrets:
CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
RAPIDSAI_PYPI_TOKEN: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
Expand All @@ -154,7 +154,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -174,7 +174,7 @@ jobs:
id-token: write
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
secrets:
CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
RAPIDSAI_PYPI_TOKEN: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- devcontainer
permissions:
contents: read
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
contents: read
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
with:
files_yaml: |
build_docs:
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
needs: telemetry-setup
permissions:
contents: read
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.2.0
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 @@ -162,12 +162,12 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.2.0
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.06-latest"
container_image: "rapidsai/ci-conda:26.08-latest"
script: "ci/run_clang_tidy.sh"
conda-cpp-build:
needs: checks
Expand All @@ -178,7 +178,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
with:
build_type: pull-request
node_type: cpu16
Expand All @@ -192,7 +192,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-13.2.0
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
Expand All @@ -205,7 +205,7 @@ jobs:
id-token: write
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
with:
build_type: pull-request
conda-python-build:
Expand All @@ -217,7 +217,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
with:
build_type: pull-request
script: ci/build_python.sh
Expand All @@ -232,7 +232,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.2.0
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 @@ -247,13 +247,13 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.2.0
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.06-latest"
container_image: "rapidsai/ci-conda:26.08-latest"
script: "ci/build_docs.sh"
wheel-build-libnvforest:
needs: checks
Expand All @@ -264,7 +264,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: pull-request
branch: ${{ inputs.branch }}
Expand All @@ -285,7 +285,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
with:
build_type: pull-request
node_type: cpu8
Expand All @@ -303,7 +303,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.2.0
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
Expand All @@ -317,7 +317,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@release/26.04
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main
with:
arch: '["amd64", "arm64"]'
cuda: '["13.2"]'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
id-token: write
packages: read
pull-requests: read
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-post-build-checks.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -46,7 +46,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -61,7 +61,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.2.0
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -77,7 +77,7 @@ jobs:
packages: read
pull-requests: read
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.2.0
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.06.00
26.08.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 @@ -20,23 +20,23 @@ dependencies:
- doxygen
- gcc_linux-aarch64=14.*
- graphviz
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.6.*,>=0.0.0a0
- pylibraft==26.8.*,>=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.6.*,>=0.0.0a0
- rapids-xgboost==26.8.*,>=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 @@ -20,23 +20,23 @@ dependencies:
- doxygen
- gcc_linux-64=14.*
- graphviz
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.6.*,>=0.0.0a0
- pylibraft==26.8.*,>=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.6.*,>=0.0.0a0
- rapids-xgboost==26.8.*,>=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-132_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ dependencies:
- doxygen
- gcc_linux-aarch64=14.*
- graphviz
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.6.*,>=0.0.0a0
- pylibraft==26.8.*,>=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.6.*,>=0.0.0a0
- rapids-xgboost==26.8.*,>=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-132_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ dependencies:
- doxygen
- gcc_linux-64=14.*
- graphviz
- libraft==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=0.0.0a0
- ninja
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandas
- pre-commit
- pydata-sphinx-theme
- pylibraft==26.6.*,>=0.0.0a0
- pylibraft==26.8.*,>=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.6.*,>=0.0.0a0
- rapids-xgboost==26.8.*,>=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 @@ -15,8 +15,8 @@ dependencies:
- cuda-version=12.9
- cxx-compiler
- gcc_linux-64=14.*
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft-headers==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=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-132_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencies:
- cuda-version=13.2
- cxx-compiler
- gcc_linux-64=14.*
- libraft-headers==26.6.*,>=0.0.0a0
- librmm==26.6.*,>=0.0.0a0
- libraft-headers==26.8.*,>=0.0.0a0
- librmm==26.8.*,>=0.0.0a0
- llvm-openmp==15.0.7
- ninja
- sysroot_linux-64==2.28
Expand Down
Loading
Loading