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
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ concurrency:
jobs:
java-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
strategy:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.2'
- '13.1.0'
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- conda-java-tests
- telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.1.0
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand All @@ -42,7 +42,7 @@ jobs:
changed-files:
needs: telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@cuda-13.1.0
with:
files_yaml: |
test_java:
Expand All @@ -52,14 +52,14 @@ jobs:
checks:
needs: telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.1.0
with:
enable_check_generated_files: false
ignored_pr_jobs: "telemetry-summarize"
conda-java-tests:
needs: [changed-files, checks]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_java
# Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
# If these jobs start producing artifacts, the names will have to differentiate between CUDA versions.
Expand All @@ -68,7 +68,7 @@ jobs:
matrix:
cuda_version:
- '12.9.1'
- '13.0.2'
- '13.1.0'
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ on:
jobs:
conda-java-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.1.0
strategy:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.2'
- '13.1.0'
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- cuda-cudart-dev
- cuda-nvtx-dev
- cuda-profiler-api
- cuda-version=13.0
- cuda-version=13.1
- libcublas-dev
- libcurand-dev
- libcusolver-dev
Expand All @@ -17,4 +17,4 @@ dependencies:
- maven
- ninja
- openjdk=22.*
name: all_cuda-130_arch-aarch64
name: all_cuda-131_arch-aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- cuda-cudart-dev
- cuda-nvtx-dev
- cuda-profiler-api
- cuda-version=13.0
- cuda-version=13.1
- libcublas-dev
- libcurand-dev
- libcusolver-dev
Expand All @@ -17,4 +17,4 @@ dependencies:
- maven
- ninja
- openjdk=22.*
name: all_cuda-130_arch-x86_64
name: all_cuda-131_arch-x86_64
8 changes: 6 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION.
# SPDX-License-Identifier: Apache-2.0

# Dependency list for https://github.com/rapidsai/dependency-file-generator
files:
all:
output: conda
matrix:
cuda: ["12.9", "13.0"]
cuda: ["12.9", "13.1"]
arch: [x86_64, aarch64]
includes:
- cuda
Expand Down Expand Up @@ -59,6 +59,10 @@ dependencies:
cuda: "13.0"
packages:
- cuda-version=13.0
- matrix:
cuda: "13.1"
packages:
- cuda-version=13.1
cuda:
common:
- output_types: [conda]
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cd ..

Then do:
```sh
docker run --rm --gpus all --pull=always --volume $PWD:$PWD --workdir $PWD -it rapidsai/ci-conda:26.02-cuda13.0.2-ubuntu24.04-py3.13
docker run --rm --gpus all --pull=always --volume $PWD:$PWD --workdir $PWD -it rapidsai/ci-conda:26.02-cuda13.1.0-ubuntu24.04-py3.13
```

Inside the docker container (and in the `cuvs-lucene's` root directory) do:
Expand Down