This is an automated email from the ASF dual-hosted git repository.
yichi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new eea07cf Fix remaining failing perf IT tests.
new 5ccb002 Merge pull request #16418 from y1chi/perf-it-2
eea07cf is described below
commit eea07cfb8285f505df32af74647f1451f44f7e7b
Author: Yichi Zhang <[email protected]>
AuthorDate: Tue Jan 4 10:38:22 2022 -0800
Fix remaining failing perf IT tests.
---
.../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 71c65eb..b5c6395 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -1766,10 +1766,12 @@ class BeamModulePlugin implements Plugin<Project> {
}
if (runner?.equalsIgnoreCase('flink')) {
+ testRuntimeOnly it.project(path:
":runners:flink:${project.ext.latestFlinkVersion}")
testRuntimeOnly it.project(path:
":runners:flink:${project.ext.latestFlinkVersion}", configuration:
"testRuntimeMigration")
}
if (runner?.equalsIgnoreCase('spark')) {
+ testRuntimeOnly it.project(path: ":runners:spark:2")
testRuntimeOnly it.project(path: ":runners:spark:2", configuration:
"testRuntimeMigration")
testRuntimeOnly project.library.java.spark_core
testRuntimeOnly project.library.java.spark_streaming
@@ -1782,12 +1784,14 @@ class BeamModulePlugin implements Plugin<Project> {
/* include dependencies required by filesystems */
if (filesystem?.equalsIgnoreCase('hdfs')) {
+ testRuntimeOnly it.project(path: ":sdks:java:io:hadoop-file-system")
testRuntimeOnly it.project(path: ":sdks:java:io:hadoop-file-system",
configuration: "testRuntimeMigration")
testRuntimeOnly project.library.java.hadoop_client
}
/* include dependencies required by AWS S3 */
if (filesystem?.equalsIgnoreCase('s3')) {
+ testRuntimeOnly it.project(path: ":sdks:java:io:amazon-web-services")
testRuntimeOnly it.project(path:
":sdks:java:io:amazon-web-services", configuration: "testRuntimeMigration")
}
}