Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- &latest_cuda12 '12.9.1'
- &latest_cuda13 '13.0.1'
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -72,8 +72,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- *latest_cuda12
- *latest_cuda13
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub just recently announced support for YAML anchors: https://github.blog/changelog/2025-09-18-actions-yaml-anchors-and-non-public-workflow-templates/

This seems like a useful application for them.

with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -93,8 +93,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- *latest_cuda12
- *latest_cuda13
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- &latest_cuda12 '12.9.1'
- &latest_cuda13 '13.0.1'
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand Down Expand Up @@ -189,8 +189,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- *latest_cuda12
- *latest_cuda13
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand All @@ -207,8 +207,8 @@ jobs:
fail-fast: false
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- *latest_cuda12
- *latest_cuda13
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
matrix:
cuda_version:
- '12.9.1'
- '13.0.0'
- '13.0.1'
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
4 changes: 2 additions & 2 deletions java/docker-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This builds using the defaults:
### Building for CUDA 13, All GPU Architectures

```bash
CUDA_VERSION=13.0.0 ./build-in-docker
CUDA_VERSION=13.0.1 ./build-in-docker
```

### Building for Local GPU Architecture Only
Expand Down Expand Up @@ -90,7 +90,7 @@ OS_VERSION=8 ./build-in-docker
### Build with Custom Maven Repository and ccache

```bash
LOCAL_MAVEN_REPO=/custom/maven/repo LOCAL_CCACHE_DIR=/custom/ccache CUDA_VERSION=13.0.0 ./build-in-docker
LOCAL_MAVEN_REPO=/custom/maven/repo LOCAL_CCACHE_DIR=/custom/ccache CUDA_VERSION=13.0.1 ./build-in-docker
```

### Build with Additional Docker Arguments
Expand Down
Loading