mbien commented on PR #6968:
URL: https://github.com/apache/netbeans/pull/6968#issuecomment-1936833323
hi @lahodaj. #7019 got merged and CI should be now ready for the NB 22
cycle. Could you make this small additional change which would enable testing
on JDK 22? I couldn't do this myself because nb-javac 22 would be required for
that - and I think this would fit to this PR.
```diff
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 30f49a0..c72e686 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1593,10 +1593,10 @@
timeout-minutes: 60
strategy:
matrix:
- java: [ '17', '21' ]
+ java: [ '17', '22-ea' ]
config: [ 'batch1', 'batch2' ]
exclude:
- - java: ${{ github.event_name == 'pull_request' && 'nothing' ||
'21' }}
+ - java: ${{ github.event_name == 'pull_request' && 'nothing' ||
'22-ea' }}
fail-fast: false
steps:
```
that would be the `java-hints-test` job
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists