Skip to content

Commit c4104e1

Browse files
soloturnclaude
andcommitted
ci: require a java17 agent in Jenkinsfile
The pipeline previously ran on any "light"-labeled agent with no JDK constraint. Now that the minimum Java version for the core modules is 17, an agent without it installed would fail to compile. Match the labeling convention already used by Terasology's own Jenkinsfile (label 'ts-engine && heavy && java17'). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 1b0bc03 commit c4104e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline {
22
agent {
3-
label "light"
3+
label "light && java17"
44
}
55
stages {
66
stage('Build') {

0 commit comments

Comments
 (0)