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

chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git


The following commit(s) were added to refs/heads/main by this push:
     new ae9c4160b fix(ci): Install pyfory for golang xlang tests (#2561)
ae9c4160b is described below

commit ae9c4160bfedb05a529f0225ee27713f219f39fe
Author: Emre Şafak <[email protected]>
AuthorDate: Mon Sep 1 19:37:35 2025 -0400

    fix(ci): Install pyfory for golang xlang tests (#2561)
    
    ## Why?
    
    Golang xlang tests are failing because pyfory is not installed
    
    ## What does this PR do?
    
    * Add step to install the pyfory package in the CI workflow.
    * Ensure pyarrow, cython, wheel, pytest, and setuptools are up-to-date.
    
    ## Related issues
    
    Fixes #2555
---
 .github/workflows/ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index de13534c6..b6f47cf79 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -302,7 +302,9 @@ jobs:
       - name: Install bazel
         run: python ./ci/run_ci.py cpp --install-deps-only
       - name: Install python dependencies
-        run: pip install pyarrow==15.0.0 Cython wheel pytest setuptools -U
+        run: pip install pyarrow==15.0.0 cython wheel pytest setuptools -U
+      - name: Install pyfory
+        run: pip install -e python/
       - name: Run Golang CI
         run: python ./ci/run_ci.py go
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to