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

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

commit d11266ee10230c4602e2abd9d79eea40a870adb3
Author: Chesnay Schepler <ches...@apache.org>
AuthorDate: Thu Jun 15 16:23:21 2023 +0200

    [FLINK-32327][ci] Java 17 skips python tests
---
 tools/azure-pipelines/jobs-template.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/azure-pipelines/jobs-template.yml 
b/tools/azure-pipelines/jobs-template.yml
index 8a586de96c8..3e6a14b3fc8 100644
--- a/tools/azure-pipelines/jobs-template.yml
+++ b/tools/azure-pipelines/jobs-template.yml
@@ -149,6 +149,7 @@ jobs:
 
   # Test
   - script: ${{parameters.environment}} 
./tools/azure-pipelines/uploading_watchdog.sh ./tools/ci/test_controller.sh 
$(module)
+    condition: or(not(eq(${{parameters.jdk}}, '17')), not(eq(variables.module, 
'python')))
     displayName: Test - $(module)
     env:
       IT_CASE_S3_BUCKET: $(SECRET_S3_BUCKET)
@@ -162,7 +163,7 @@ jobs:
 
   # upload debug artifacts
   - task: PublishPipelineArtifact@1
-    condition: not(eq('$(DEBUG_FILES_OUTPUT_DIR)', ''))
+    condition: and(not(eq('$(DEBUG_FILES_OUTPUT_DIR)', '')), 
or(not(eq(${{parameters.jdk}}, '17')), not(eq(variables.module, 'python'))))
     displayName: Upload Logs
     inputs:
       targetPath: $(DEBUG_FILES_OUTPUT_DIR)

Reply via email to