We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6988db2 commit d85a732Copy full SHA for d85a732
Jenkinsfile
@@ -180,6 +180,25 @@ pipeline {
180
echo 'Skipping Kafka Streams archetype test for Java 21'
181
}
182
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
202
203
204
0 commit comments