Skip to content

Commit d85a732

Browse files
committed
Run tests with Java 23 on CI
1 parent 6988db2 commit d85a732

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Jenkinsfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,25 @@ pipeline {
180180
echo 'Skipping Kafka Streams archetype test for Java 21'
181181
}
182182
}
183+
184+
stage('JDK 23 and Scala 2.13') {
185+
agent { label 'ubuntu' }
186+
tools {
187+
jdk 'jdk_23_latest'
188+
}
189+
options {
190+
timeout(time: 8, unit: 'HOURS')
191+
timestamps()
192+
}
193+
environment {
194+
SCALA_VERSION=2.13
195+
}
196+
steps {
197+
doValidation()
198+
doTest(env)
199+
echo 'Skipping Kafka Streams archetype test for Java 21'
200+
}
201+
}
183202
}
184203
}
185204
}

0 commit comments

Comments
 (0)