Skip to content

Commit c41efa5

Browse files
committed
Test against Java 20 in CI.
Resolves #2892.
1 parent 1a381e5 commit c41efa5

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

Jenkinsfile

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pipeline {
1818
}
1919

2020
stages {
21-
stage("test: baseline (Java 17)") {
21+
stage("test: baseline (main)") {
2222
when {
2323
beforeAgent(true)
2424
anyOf {
@@ -70,6 +70,23 @@ pipeline {
7070
}
7171
}
7272
}
73+
stage("test: baseline (next)") {
74+
agent {
75+
label 'data'
76+
}
77+
options { timeout(time: 30, unit: 'MINUTES')}
78+
environment {
79+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
80+
}
81+
steps {
82+
script {
83+
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
84+
sh 'PROFILE=all-dbs ci/test.sh'
85+
sh "ci/clean.sh"
86+
}
87+
}
88+
}
89+
}
7390
}
7491
}
7592

0 commit comments

Comments
 (0)