This is an automated email from the ASF dual-hosted git repository. yuxia pushed a commit to branch release-0.1 in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
commit 2dcf5c2d4d6fd630eb748cca184e91519dd6ea19 Author: luoyuxia <[email protected]> AuthorDate: Tue Mar 3 16:17:50 2026 +0800 chore: fix build python wheel issue --- .github/workflows/release_python.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_python.yml b/.github/workflows/release_python.yml index d7bd04c..0a7db0a 100644 --- a/.github/workflows/release_python.yml +++ b/.github/workflows/release_python.yml @@ -84,17 +84,22 @@ jobs: - name: Generate Python README run: python3 bindings/python/generate_readme.py - - name: Install protoc (Linux) - if: runner.os == 'Linux' + - name: Install protoc (Linux host) + if: runner.os == 'Linux' && matrix.target == 'x86_64' run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install protoc (manylinux container) + if: runner.os == 'Linux' && matrix.target != 'x86_64' + run: yum install -y protobuf-compiler + shell: bash + - name: Install protoc (macOS) if: runner.os == 'macOS' run: brew install protobuf - name: Install protoc (Windows) if: runner.os == 'Windows' - run: choco install protobuf -y + run: choco install protoc -y shell: pwsh - uses: PyO3/maturin-action@v1
