java: get nightly test matrix from shared-workflows#2340
Merged
Conversation
jameslamb
marked this pull request as ready for review
July 21, 2026 17:58
KyleFromNVIDIA
approved these changes
Jul 21, 2026
cjnolet
approved these changes
Jul 21, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2340 +/- ##
=======================================
Coverage 86.70% 86.70%
=======================================
Files 33 33
Lines 173 173
=======================================
Hits 150 150
Misses 23 23 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Member
Author
|
/merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Nightly Java tests are failing like this:
(build link)
CI jobs here were updated from hard-coded lists of CUDA versions to a shared matrix from
shared-workflowsin #2034, to avoid exactly this situation... buttest.yamlwas missed in that PR.This updates
test.yamlto match the way the Java tests run in PRs.Notes for Reviewers
How I tested this
Manually triggered a run from this branch.
gh workflow run \ --repo NVIDIA/cuvs \ --ref 'fix/build-matrix' \ -f branch=main \ -f build_type=nightly \ -f date=2026-07-21 \ -f sha=c38d9a77d4840d344369d472e9cafc87882d2a30 \ test.yamlThat generated this run: https://github.com/NVIDIA/cuvs/actions/runs/29853648565
Which had 2 Java test jobs (1 for CUDA 12, 1 for CUDA 13)
Which failed, but with real test errors (so got past the pulling-a-nonexistent-image issue).