Skip to content

Commit 728d887

Browse files
committed
fix
1 parent 957b26f commit 728d887

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci-pr-validation.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,14 @@ jobs:
193193

194194
- name: Build Pulsar C++ client
195195
if: steps.cache-cpp.outputs.cache-hit != 'true'
196-
run: pkg/mac/build-pulsar-cpp.sh
196+
run: |
197+
source venv/bin/activate
198+
pkg/mac/build-pulsar-cpp.sh
197199
198200
- name: Build and test Mac wheels
199-
run: pkg/mac/build-mac-wheels.sh ${{matrix.py.version}}
201+
run: |
202+
source venv/bin/activate
203+
pkg/mac/build-mac-wheels.sh ${{matrix.py.version}}
200204
201205
windows-wheels:
202206
name: "Python ${{ matrix.python.version }} Wheel on Windows x64"

0 commit comments

Comments
 (0)