You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by dw...@apache.org on 2020/07/17 09:44:31 UTC

[flink] branch master updated: [FLINK-18618] Fix syntax error when disabling docker e2e tests

This is an automated email from the ASF dual-hosted git repository.

dwysakowicz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 5607667  [FLINK-18618] Fix syntax error when disabling docker e2e tests
5607667 is described below

commit 5607667e0c48aede67bfd3c2a73c8c67b5af224a
Author: Dawid Wysakowicz <dw...@apache.org>
AuthorDate: Fri Jul 17 11:42:36 2020 +0200

    [FLINK-18618] Fix syntax error when disabling docker e2e tests
---
 flink-end-to-end-tests/run-nightly-tests.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/flink-end-to-end-tests/run-nightly-tests.sh b/flink-end-to-end-tests/run-nightly-tests.sh
index b41b38e..51c88bc 100755
--- a/flink-end-to-end-tests/run-nightly-tests.sh
+++ b/flink-end-to-end-tests/run-nightly-tests.sh
@@ -121,7 +121,7 @@ run_test "RocksDB Memory Management end-to-end test" "$END_TO_END_DIR/test-scrip
 ################################################################################
 
 # These tests are known to fail on JDK11. See FLINK-13719
-if [[ ${PROFILE} != *"jdk11"* ]]; then
+#if [[ ${PROFILE} != *"jdk11"* ]]; then
 	#run_test "Wordcount on Docker test (custom fs plugin)" "$END_TO_END_DIR/test-scripts/test_docker_embedded_job.sh dummy-fs"
 
 	#run_test "Run Kubernetes test" "$END_TO_END_DIR/test-scripts/test_kubernetes_embedded_job.sh"
@@ -130,7 +130,7 @@ if [[ ${PROFILE} != *"jdk11"* ]]; then
 
 	#run_test "Running Flink over NAT end-to-end test" "$END_TO_END_DIR/test-scripts/test_nat.sh" "skip_check_exceptions"
 
-	if [[ `uname -i` != 'aarch64' ]]; then
+	#if [[ `uname -i` != 'aarch64' ]]; then
 		# Hadoop YARN deosn't support aarch64 at this moment. See: https://issues.apache.org/jira/browse/HADOOP-16723
 
 		# YARN tests disabled because we can no longer download oracle jdk. See FLINK-18600
@@ -144,8 +144,8 @@ if [[ ${PROFILE} != *"jdk11"* ]]; then
 
 		# `google/cloud-sdk` docker image doesn't support aarch64 currently.
 		#run_test "Test PubSub connector with Docker based Google PubSub Emulator" "$END_TO_END_DIR/test-scripts/test_streaming_gcp_pubsub.sh"
-	fi
-fi
+	#fi
+#fi
 
 ################################################################################
 # High Availability