We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bd3d09 commit 957b26fCopy full SHA for 957b26f
.github/workflows/ci-pr-validation.yaml
@@ -176,12 +176,13 @@ jobs:
176
path: .pulsar-mac-build/deps/install
177
key: ${{matrix.py.version_long}}-${{ hashFiles('dependencies.yaml') }}-${{ hashFiles('pkg/mac/*') }}
178
179
- - name: Install Python deps
180
- run: pip3 install -U pyyaml
181
-
182
- name: Build dependencies
183
if: steps.cache-deps.outputs.cache-hit != 'true'
184
- run: pkg/mac/build-dependencies.sh ${{matrix.py.version}} ${{matrix.py.version_long}}
+ run: |
+ python3 -m venv venv
+ source venv/bin/activate
+ python3 -m pip install pyyaml setuptools
185
+ pkg/mac/build-dependencies.sh ${{matrix.py.version}} ${{matrix.py.version_long}}
186
187
- name: Pulsar C++ cache
188
uses: actions/cache@v3
0 commit comments