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

zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 276892c  chore: fix macOS Go 1.24 CI (#334)
276892c is described below

commit 276892c275de85578fa2938d6998dda32815bcf0
Author: David Li <[email protected]>
AuthorDate: Tue Mar 25 10:05:33 2025 -0400

    chore: fix macOS Go 1.24 CI (#334)
    
    ### Rationale for this change
    
    CI was failing.
    
    ### What changes are included in this PR?
    
    Explicitly include Arrow in PKG_CONFIG_PATH.
    
    ### Are these changes tested?
    
    Yes
    
    ### Are there any user-facing changes?
    
    No
    
    ---------
    
    Co-authored-by: Sutou Kouhei <[email protected]>
---
 .github/workflows/test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 477414a..964c18c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -214,7 +214,7 @@ jobs:
         run: brew install apache-arrow
       - name: Setup PKG_CONFIG_PATH
         run: |
-          echo "PKG_CONFIG_PATH=$(brew --prefix 
openssl@3)/lib/pkgconfig:$PKG_CONFIG_PATH" >> $GITHUB_ENV
+          echo "PKG_CONFIG_PATH=$(brew --prefix 
openssl@3)/lib/pkgconfig:$(brew --prefix)/lib/pkgconfig:$PKG_CONFIG_PATH" >> 
$GITHUB_ENV
       - name: Build
         run: |
           ci/scripts/build.sh $(pwd)

Reply via email to