blob: ee9a99d4d834aec7d7d8e23ae2fe56d482aec52b [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
// This job runs the suite of ValidatesRunner tests using Java 11 against the Direct
// runner compiled with Java 8.
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Java_ValidatesRunner_Direct_Java11',
'Run Direct ValidatesRunner Java 11', 'Direct Runner ValidatesRunner Tests for Java 11', this) {
description('Builds the Direct Runner with Java 8 and runs ValidatesRunner test suite in 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', 180)
publishers {
archiveJunit('**/build/test-results/**/*.xml')
}
steps {
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks(':runners:direct-java:shadowJar')
tasks(':runners:direct-java:shadowTestJar')
switches("-Dorg.gradle.java.home=${JAVA_8_HOME}")
}
gradle {
rootBuildScriptDir(commonJobProperties.checkoutDir)
tasks(':runners:direct-java:validatesRunner')
switches("-Dorg.gradle.java.home=${JAVA_11_HOME}")
switches('-x shadowJar')
switches('-x shadowTestJar')
switches('-x compileJava')
switches('-x compileTestJava')
}
}
}