You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ni...@apache.org on 2022/09/09 07:53:27 UTC

[pulsar] 08/08: [ci] Skip run flaky tests suite for cpp-only or doc-only changes (#17551)

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

nicoloboschi pushed a commit to branch branch-2.11
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit c4b9ac774498cc5afc2329885b17b6f38f961ca3
Author: Nicolò Boschi <bo...@gmail.com>
AuthorDate: Thu Sep 8 18:19:25 2022 +0200

    [ci] Skip run flaky tests suite for cpp-only or doc-only changes (#17551)
    
    * [ci] Skip run flaky tests suite for cpp-only changes
    
    * also ignore doc changes
    
    * use changed_files
    
    (cherry picked from commit a3c3f807395b596113b4a7972483aeb6a251b504)
---
 .github/workflows/pulsar-ci-flaky.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pulsar-ci-flaky.yaml b/.github/workflows/pulsar-ci-flaky.yaml
index 800a8cf9a5b..0e49c01fbbc 100644
--- a/.github/workflows/pulsar-ci-flaky.yaml
+++ b/.github/workflows/pulsar-ci-flaky.yaml
@@ -67,7 +67,7 @@ jobs:
     name: Flaky tests suite
     runs-on: ubuntu-20.04
     timeout-minutes: 100
-    if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
+    if: ${{ needs.changed_files_job.outputs.docs_only != 'true' && needs.changed_files_job.outputs.cpp_only != 'true' }}
     steps:
       - name: checkout
         uses: actions/checkout@v2