7575 with :
7676 submodules : recursive
7777 - name : Run Python Script
78- run : pyroscope_ffi/python/scripts/tests/test.py
78+ run : python pyroscope_ffi/python/scripts/tests/test.py
7979 env :
8080 PYROSCOPE_RUN_ID : ${{ github.run_id }}
8181 PYROSCOPE_ARCH : x86-64-linux
@@ -177,16 +177,18 @@ jobs:
177177 with :
178178 name : x86_64-apple-darwin
179179 path : " ${{github.workspace}}/python"
180-
181- - run : " python --version"
182- - run : " python3 --version"
180+ - run : " python --version ; pip --version ; python3 --version ; pip3 --version; pip list; uname -a"
181+ - run : " pip install pip cffi --upgrade"
183182 - run : " cd ${{ github.workspace }}/python && ls -l"
184- - run : " cd ${{ github.workspace }}/python && pip3 install *.whl"
183+ - name : Install wheel
184+ run : " cd ${{ github.workspace }}/python && pip install *.whl"
185+ env :
186+ SYSTEM_VERSION_COMPAT : 0
185187 - uses : actions/checkout@v2
186188 with :
187189 submodules : recursive
188190 - name : Run Python Script
189- run : pyroscope_ffi/python/scripts/tests/test.py
191+ run : python pyroscope_ffi/python/scripts/tests/test.py
190192 env :
191193 PYROSCOPE_RUN_ID : ${{ github.run_id }}
192194 PYROSCOPE_ARCH : x86-64-apple-darwin
@@ -208,7 +210,9 @@ jobs:
208210 - uses : actions/setup-python@v4
209211 with :
210212 python-version : 3.9
211-
213+ - name : Upgrade pip
214+ run : |
215+ python -m pip install --upgrade pip pipenv wheel
212216 - name : Build sdist
213217 run : python setup.py sdist
214218 working-directory : pyroscope_ffi/python
0 commit comments