You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by GitBox <gi...@apache.org> on 2019/01/14 03:27:30 UTC

[beam] Diff for: [GitHub] mxm closed pull request #7496: [BEAM-6418] Avoid Jenkins memory problems for Flink build targets

diff --git a/runners/flink/flink_runner.gradle b/runners/flink/flink_runner.gradle
index 105e72cdcffa..5fb6a36181e2 100644
--- a/runners/flink/flink_runner.gradle
+++ b/runners/flink/flink_runner.gradle
@@ -70,8 +70,8 @@ test {
   }
 }.onlyIf {
   // TODO Running tests of all Flink versions in parallel can be too harsh on Jenkins memory
-  // Skip 1.7 tests for now, to avoid "Exit code 137", i.e. Jenkins host killing the Gradle test process
-  project.name != "beam-runners-flink-1.7"
+  // Skip 1.6/1.7 tests for now, to avoid "Exit code 137", i.e. Jenkins host killing the Gradle test process
+  project.name != "beam-runners-flink-1.6" && project.name != "beam-runners-flink-1.7"
 }
 
 configurations {


With regards,
Apache Git Services