更新
更旧
/*
* 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.
*/
plugins {
id 'base'
// Enable publishing build scans
id 'com.gradle.build-scan' version '2.3' apply false
// This plugin provides a task to determine which dependencies have updates.
// Additionally, the plugin checks for updates to Gradle itself.
//
// See https://github.com/ben-manes/gradle-versions-plugin for further details.
// Apply one top level rat plugin to perform any required license enforcement analysis

Luke Cwik
已提交
id 'org.nosphere.apache.rat' version '0.4.0'
// Enable gradle-based release management
id 'net.researchgate.release' version '2.6.0'
id 'org.apache.beam.module'
id "org.sonarqube" version "2.7"

Luke Cwik
已提交
/*************************************************************************************************/
// Configure the root project
// Plugins which require online access should not be enabled when running in offline mode.
if (!gradle.startParameter.isOffline()) {
apply plugin: "com.gradle.build-scan"
}
// JENKINS_HOME and BUILD_ID set automatically during Jenkins execution
def isCIBuild = ['JENKINS_HOME', 'BUILD_ID'].every System.&getenv
if (isCIBuild) {
buildScan {
// Build Scan enabled and TOS accepted for Jenkins lab build. This does not apply to builds on
// non-Jenkins machines. Developers need to separately enable and accept TOS to use build scans.
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
publishAlways()
}
}
// Set input directory to that of the root project instead of the CWD. This
// makes .gitignore rules (added below) work properly.
inputDir = project.rootDir
def exclusions = [
// Ignore files we track but do not distribute
"**/user.avsc",
"**/test/resources/**/*.txt",
"**/test/**/.placeholder",
// Default eclipse excludes neglect subprojects
// Proto/grpc generated wrappers
"**/apache_beam/portability/api/*_pb2*.py",
"**/go/pkg/beam/**/*.pb.go",
// Ignore Go test data files
"**/go/data/**",
// VCF test files
"**/apache_beam/testing/data/vcf/*",
// JDBC package config files
"**/META-INF/services/java.sql.Driver",
// Ruby build files
"**/Gemfile.lock",
"**/Rakefile",
"**/.htaccess",
"website/src/_sass/_bootstrap.scss",
"website/src/_sass/bootstrap/**/*",
"website/src/js/bootstrap*.js",
"website/src/js/bootstrap/**/*",
// Ignore ownership files
"ownership/**/*",
"learning/katas/**/course-remote-info.yaml",
"learning/katas/**/section-remote-info.yaml",
"learning/katas/**/lesson-remote-info.yaml",
"learning/katas/**/task-remote-info.yaml",
"learning/katas/*/IO/**/*.txt",
// Mockito extensions
"sdks/java/io/amazon-web-services2/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker"
// Add .gitignore excludes to the Apache Rat exclusion list. We re-create the behavior
// of the Apache Maven Rat plugin since the Apache Ant Rat plugin doesn't do this
// automatically.
def gitIgnore = project(':').file('.gitignore')
if (gitIgnore.exists()) {
def gitIgnoreExcludes = gitIgnore.readLines().findAll { !it.isEmpty() && !it.startsWith('#') }
exclusions.addAll(gitIgnoreExcludes)
}
failOnError = true
excludes = exclusions

Luke Cwik
已提交
check.dependsOn rat
// Define root pre/post commit tasks simplifying what is needed
// to be specified on the commandline when executing locally.
// This indirection also makes Jenkins use the branch of the PR
// for the test definitions.
// We need to list the model/* builds since sdks/java/core doesn't
// depend on any of the model.
dependsOn ":model:pipeline:build"
dependsOn ":model:job-management:build"
dependsOn ":model:fn-execution:build"
dependsOn ":runners:google-cloud-dataflow-java:worker:legacy-worker:build"
dependsOn ":sdks:java:core:buildNeeded"
dependsOn ":sdks:java:core:buildDependents"
dependsOn ":examples:java:preCommit"
dependsOn ":sdks:java:extensions:sql:jdbc:preCommit"
dependsOn ":sdks:java:javadoc:allJavadoc"
dependsOn ":runners:direct-java:needsRunnerTests"
task sqlPreCommit() {
dependsOn ":sdks:java:extensions:sql:build"
dependsOn ":sdks:java:extensions:sql:buildDependents"
}
task javaPreCommitBeamZetaSQL() {
dependsOn ":sdks:java:extensions:sql:zetasql:test"
task javaPreCommitPortabilityApi() {
dependsOn ":runners:google-cloud-dataflow-java:worker:build"
dependsOn ":runners:google-cloud-dataflow-java:examples:verifyPortabilityApi"
task javaPostCommit() {
dependsOn ":runners:google-cloud-dataflow-java:postCommit"
dependsOn ":sdks:java:extensions:google-cloud-platform-core:postCommit"
dependsOn ":sdks:java:extensions:zetasketch:postCommit"
dependsOn ":sdks:java:io:google-cloud-platform:postCommit"
dependsOn ":sdks:java:extensions:sql:postCommit"
dependsOn ":sdks:java:extensions:sql:jdbc:postCommit"
dependsOn ":sdks:java:extensions:sql:datacatalog:postCommit"
}
task javaPostCommitPortabilityApi () {
dependsOn ":runners:google-cloud-dataflow-java:postCommitPortabilityApi"
dependsOn ":sdks:go:goTest"
dependsOn ":sdks:go:examples:goBuild"
dependsOn ":sdks:go:test:goBuild"
// Ensure all container Go boot code builds as well.
dependsOn ":sdks:java:container:goBuild"
dependsOn ":sdks:python:container:goBuild"
dependsOn ":sdks:go:container:goBuild"
dependsOn ":goIntegrationTests"
}
task goIntegrationTests() {
doLast {
exec {
executable 'sh'
args '-c', './sdks/go/test/run_integration_tests.sh'
}
}
dependsOn ":sdks:go:test:build"
dependsOn ":runners:google-cloud-dataflow-java:worker:shadowJar"
dependsOn ":sdks:python:test-suites:tox:pycommon:preCommitPyCommon"

Mark Liu
已提交
dependsOn ":sdks:python:test-suites:tox:py2:preCommitPy2"
dependsOn ":sdks:python:test-suites:tox:py35:preCommitPy35"
dependsOn ":sdks:python:test-suites:tox:py36:preCommitPy36"
dependsOn ":sdks:python:test-suites:tox:py37:preCommitPy37"

Mark Liu
已提交
dependsOn ":sdks:python:test-suites:dataflow:py2:preCommitIT"
dependsOn ":sdks:python:test-suites:dataflow:py37:preCommitIT"
// We don't include Py35, Py36 precommit ITs to reduce quota footprint.
// We can reconsider if we ever see an issue that these suites would
// have caught. Note that the same tests will still run in postcommit.
task pythonLintPreCommit() {
dependsOn ":sdks:python:test-suites:tox:py2:lint"
dependsOn ":sdks:python:test-suites:tox:py37:lint"

Mark Liu
已提交
dependsOn ":sdks:python:test-suites:portable:py2:crossLanguageTests"
dependsOn ":sdks:python:test-suites:dataflow:py2:postCommitIT"
dependsOn ":sdks:python:test-suites:direct:py2:directRunnerIT"
dependsOn ":sdks:python:test-suites:direct:py2:hdfsIntegrationTest"
dependsOn ":sdks:python:test-suites:direct:py2:mongodbioIT"
dependsOn ":sdks:python:test-suites:portable:py2:postCommitPy2"
task python35PostCommit() {
dependsOn ":sdks:python:test-suites:dataflow:py35:postCommitIT"
dependsOn ":sdks:python:test-suites:direct:py35:postCommitIT"
dependsOn ":sdks:python:test-suites:portable:py35:postCommitPy35"
}
task python36PostCommit() {
dependsOn ":sdks:python:test-suites:dataflow:py36:postCommitIT"
dependsOn ":sdks:python:test-suites:direct:py36:postCommitIT"
dependsOn ":sdks:python:test-suites:portable:py36:postCommitPy36"
}
task python37PostCommit() {
dependsOn ":sdks:python:test-suites:dataflow:py37:postCommitIT"
dependsOn ":sdks:python:test-suites:direct:py37:postCommitIT"
dependsOn ":sdks:python:test-suites:direct:py37:hdfsIntegrationTest"
dependsOn ":sdks:python:test-suites:portable:py37:postCommitPy37"

Mark Liu
已提交
dependsOn ":sdks:python:test-suites:portable:py2:preCommitPy2"
dependsOn ":sdks:python:test-suites:portable:py35:preCommitPy35"
dependsOn ":sdks:python:test-suites:portable:py36:preCommitPy36"
dependsOn ":sdks:python:test-suites:portable:py37:preCommitPy37"
dependsOn ":website:preCommit"
task communityMetricsPreCommit() {
dependsOn ":beam-test-infra-metrics:preCommit"
}
task communityMetricsProber() {
dependsOn ":beam-test-infra-metrics:checkProber"
}
task javaExamplesDataflowPrecommit() {
dependsOn ":runners:google-cloud-dataflow-java:examples:preCommit"
dependsOn ":runners:google-cloud-dataflow-java:examples-streaming:preCommit"
task runBeamDependencyCheck() {
dependsOn ":dependencyUpdates"
dependsOn ":sdks:python:dependencyUpdates"
// Configure the release plugin to do only local work; the release manager determines what, if
// anything, to push. On failure, the release manager can reset the branch without pushing.
revertOnFail = false
tagTemplate = 'v${version}'
git {
requireBranch = 'release-.*|master'
pushToRemote = ''
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
// Reports linkage errors across multiple Apache Beam artifact ids.
//
// To use (from the root of project):
// ./gradlew -Ppublishing -PjavaLinkageArtifactIds=artifactId1,artifactId2,... :checkJavaLinkage
//
// For example:
// ./gradlew -Ppublishing -PjavaLinkageArtifactIds=beam-sdks-java-core,beam-sdks-java-io-jdbc :checkJavaLinkage
//
// Note that this task publishes artifacts into your local Maven repository.
if (project.hasProperty('javaLinkageArtifactIds')) {
if (!project.hasProperty('publishing')) {
throw new GradleException('You can only check linkage of Java artifacts if you specify -Ppublishing on the command line as well.')
}
configurations { linkageCheckerJava }
dependencies {
linkageCheckerJava "com.google.cloud.tools:dependencies:1.0.1"
}
// We need to evaluate all the projects first so that we can find depend on all the
// publishMavenJavaPublicationToMavenLocal tasks below.
for (p in rootProject.subprojects) {
if (!p.path.equals(project.path)) {
evaluationDependsOn(p.path)
}
}
project.task('checkJavaLinkage', type: JavaExec) {
dependsOn project.getTasksByName('publishMavenJavaPublicationToMavenLocal', true /* recursively */)
classpath = project.configurations.linkageCheckerJava
main = 'com.google.cloud.tools.opensource.classpath.LinkageCheckerMain'
args '-a', project.javaLinkageArtifactIds.split(',').collect({"${project.ext.mavenGroupId}:${it}:0.1"}).join(',')