From 728d887ba0939e17e30275d665d9fb18e435d837 Mon Sep 17 00:00:00 2001 From: Yunze Xu Date: Fri, 13 Dec 2024 17:01:54 +0800 Subject: [PATCH] fix --- .github/workflows/ci-pr-validation.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pr-validation.yaml b/.github/workflows/ci-pr-validation.yaml index 6eb510c..1bc4079 100644 --- a/.github/workflows/ci-pr-validation.yaml +++ b/.github/workflows/ci-pr-validation.yaml @@ -193,10 +193,14 @@ jobs: - name: Build Pulsar C++ client if: steps.cache-cpp.outputs.cache-hit != 'true' - run: pkg/mac/build-pulsar-cpp.sh + run: | + source venv/bin/activate + pkg/mac/build-pulsar-cpp.sh - name: Build and test Mac wheels - run: pkg/mac/build-mac-wheels.sh ${{matrix.py.version}} + run: | + source venv/bin/activate + pkg/mac/build-mac-wheels.sh ${{matrix.py.version}} windows-wheels: name: "Python ${{ matrix.python.version }} Wheel on Windows x64"