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

xyz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-node.git


The following commit(s) were added to refs/heads/master by this push:
     new bc5182a  Fix ci failed. (#333)
bc5182a is described below

commit bc5182aed67d415b09642c036630568e402e47e6
Author: Baodi Shi <[email protected]>
AuthorDate: Tue Jun 13 13:11:49 2023 +0800

    Fix ci failed. (#333)
    
    ### Motivation
    
    Currently, ci has always failed. The root cause is brew auto upgrade 
dependents lib version.
    
https://github.com/apache/pulsar-client-node/actions/runs/5242136286/jobs/9469835451?pr=331
    
    
    ### Modifications
    
    - Use HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK to disable this behaviour.
---
 .github/workflows/ci-pr-validation.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/ci-pr-validation.yml 
b/.github/workflows/ci-pr-validation.yml
index 299758b..5663d21 100644
--- a/.github/workflows/ci-pr-validation.yml
+++ b/.github/workflows/ci-pr-validation.yml
@@ -253,6 +253,7 @@ jobs:
           cache: 'npm'
       - name: Install CPP lib
         run: |
+          export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=true
           brew update
           brew install libpulsar
       - name: Build Node binaries lib

Reply via email to