mbien commented on code in PR #7484:
URL: https://github.com/apache/netbeans/pull/7484#discussion_r1672128807
##########
.github/workflows/main.yml:
##########
@@ -1479,7 +1479,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
- java: [ '17', '22' ]
+ java: [ '17', '22', '23-ea' ]
config: [ 'batch1', 'batch2' ]
exclude:
- java: ${{ github.event_name == 'pull_request' && 'nothing' || '22'
}}
Review Comment:
please _replace_ 22 with 23-ea. Also in L1458. Like:
```yml
java: [ '17', '23-ea' ]
config: [ 'batch1', 'batch2' ]
exclude:
- java: ${{ github.event_name == 'pull_request' && 'nothing' ||
'23-ea' }}
```
The reason for that is that the job has already a `batch1`/`batch2` axis.
This would create too many nodes and NB is already above the limit.
--
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