未验证 提交 3d0f03ca 编写于 作者: B Basil Crow 提交者: GitHub

Add Java 19 to `Jenkinsfile` (#7482)

上级 7ff56d9e
......@@ -13,13 +13,16 @@ properties([
])
def buildTypes = ['Linux', 'Windows']
def jdks = [11, 17]
def jdks = [11, 17, 19]
def builds = [:]
for (i = 0; i < buildTypes.size(); i++) {
for (j = 0; j < jdks.size(); j++) {
def buildType = buildTypes[i]
def jdk = jdks[j]
if (buildType == 'Windows' && jdk != 17) {
continue // unnecessary use of hardware
}
builds["${buildType}-jdk${jdk}"] = {
// see https://github.com/jenkins-infra/documentation/blob/master/ci.adoc#node-labels for information on what node types are available
def agentContainerLabel = 'maven-' + jdk
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册