blob: d0da52927b8a6e6710e74f4cb2143ffa2debd73c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import CommonJobProperties as commonJobProperties
import PostcommitJobBuilder
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Java_ValidatesRunner_Spark_Java11',
'Run Spark ValidatesRunner Java 11', 'Apache Spark Runner ValidatesRunner Tests On Java 11', this) {
description('Runs the ValidatesRunner suite on the Spark runner with Java 11.')
def JAVA_11_HOME = '/usr/lib/jvm/java-11-openjdk-amd64'
def JAVA_8_HOME = '/usr/lib/jvm/java-8-openjdk-amd64'
commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 270)
publishers {
archiveJunit('**/build/test-results/**/*.xml')
}
steps {
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks(':runners:spark:3:jar')
tasks(':runners:spark:3:testJar')
switches("-Dorg.gradle.java.home=${JAVA_8_HOME}")
}
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks(':runners:spark:3:validatesRunner')
switches('-x shadowJar')
switches('-x shadowTestJar')
switches('-x compileJava')
switches('-x compileTestJava')
switches('-x jar')
switches('-x testJar')
switches('-x classes')
switches('-x testClasses')
switches("-Dorg.gradle.java.home=${JAVA_11_HOME}")
commonJobProperties.setGradleSwitches(delegate, 3 * Runtime.runtime.availableProcessors())
}
}
}