You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by lh...@apache.org on 2022/10/04 20:19:44 UTC

[pulsar] branch master updated: [fix][ci] CI: fix required jobs check (#17926)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4742b6f8fc2 [fix][ci] CI: fix required jobs check (#17926)
4742b6f8fc2 is described below

commit 4742b6f8fc2cc41b985e026fe5304f8bc9d3515a
Author: Nicolò Boschi <bo...@gmail.com>
AuthorDate: Tue Oct 4 22:19:35 2022 +0200

    [fix][ci] CI: fix required jobs check (#17926)
---
 .github/workflows/pulsar-ci.yaml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/pulsar-ci.yaml b/.github/workflows/pulsar-ci.yaml
index ef641feec15..7f250156795 100644
--- a/.github/workflows/pulsar-ci.yaml
+++ b/.github/workflows/pulsar-ci.yaml
@@ -950,14 +950,12 @@ jobs:
       - name: Check that all required jobs were completed successfully
         if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
         run: |
-          if [[ ! ( ( \
+          if [[ ! ( \
                    "${{ needs.unit-tests.result }}" == "success" \
                 && "${{ needs.integration-tests.result }}" == "success" \
                 && "${{ needs.system-tests.result }}" == "success" \
                 && "${{ needs.macos-build.result }}" == "success" \
-               ) || ( \
-                   "${{ needs.system-tests.result }}" == "success" \
-               ) ) ]]; then
+               ) ]]; then
             echo "Required jobs haven't been completed successfully."
             exit 1            
           fi