-
Notifications
You must be signed in to change notification settings - Fork 3
Test under JDK 26-ea #296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Test under JDK 26-ea #296
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ jobs: | |
|
|
||
| strategy: | ||
| matrix: | ||
| java: ['21', '25'] | ||
| java: ['21', '25', '26-ea'] | ||
|
|
||
| steps: | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ jobs: | |||||||||||||||||
|
|
||||||||||||||||||
| strategy: | ||||||||||||||||||
| matrix: | ||||||||||||||||||
| java: ['21', '25'] | ||||||||||||||||||
| java: ['21', '25', '26-ea'] | ||||||||||||||||||
|
Comment on lines
10
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win Add GitHub Actions defaults
⚙️ Proposed fix strategy:
+ fail-fast: false
matrix:
java: ['21', '25', '26-ea']📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||
|
|
||||||||||||||||||
| steps: | ||||||||||||||||||
| - uses: actions/checkout@v6 | ||||||||||||||||||
|
|
||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial | ⚡ Quick win
Add
fail-fast: falsehere too, same asgradle.yml.The same concern applies: a
26-eanative-compilation failure (EA builds can break on native-image more readily than JIT) will cancel the21and25jobs mid-run, silencing the stable-version signal.The
setup-graalvmaction already tests against GraalVM 25 and 26 EA builds in its own CI, confirming thatjava-version: '26-ea'is a valid input forgraalvm/setup-graalvm@v1.⚙️ Proposed fix
strategy: + fail-fast: false matrix: java: ['21', '25', '26-ea']📝 Committable suggestion
🤖 Prompt for AI Agents