This is an automated email from the ASF dual-hosted git repository.
tvalentyn 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 21abfb23f36 Disable permared go xlang tests. (#32423)
21abfb23f36 is described below
commit 21abfb23f36278ea2d60b0be658f7a171febf5d6
Author: tvalentyn <[email protected]>
AuthorDate: Wed Sep 11 10:29:45 2024 -0700
Disable permared go xlang tests. (#32423)
---
.../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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 50f94da2590..7b27cb8e140 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -2824,7 +2824,8 @@ class BeamModulePlugin implements Plugin<Project> {
// CrossLanguageValidatesRunnerTask is setup under python sdk but also
runs tasks not involving
// python versions. set 'skipNonPythonTask' property to avoid duplicated
run of these tasks.
if (!(project.hasProperty('skipNonPythonTask') &&
project.skipNonPythonTask == 'true')) {
- mainTask.configure { dependsOn goTask }
+ System.err.println 'GoUsingJava tests have been disabled:
https://github.com/apache/beam/issues/30517#issuecomment-2341881604.'
+ // mainTask.configure { dependsOn goTask }
}
cleanupTask.configure { mustRunAfter goTask }
config.cleanupJobServer.configure { mustRunAfter goTask }