Skip to content

Commit

Permalink
[python/ci] Debug MacOS 14 wheel-smoke-test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed May 22, 2024
1 parent 27cc8a9 commit 3edc8d9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/python-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,14 @@ jobs:
name: sdist
- name: rename sdist
run: cp tiledbsoma-*.tar.gz tiledbsoma.tar.gz && ls -lh
- name: Show platform
run: |
echo
echo matrix.platform: ${{ matrix.platform }}
echo matrix.arch: ${{ matrix.arch }}
# This bit is crucial since it's used to match up to a component of the wheel-file name
python -c 'from distutils import util; print(util.get_platform())'
echo
- name: Build wheels
uses: pypa/[email protected]
with:
Expand Down Expand Up @@ -133,10 +141,16 @@ jobs:
- name: Install wheel
run: |
set -x
echo
ls -lR
echo
ls -lR wheels-*
echo
echo matrix.platform: ${{ matrix.platform }}
echo matrix.arch: ${{ matrix.arch }}
# This bit is crucial since it's used to match up to a component of the wheel-file name
python -c 'from distutils import util; print(util.get_platform())'
echo
WHL=$(find . -name 'tiledbsoma-*-cp311-cp311-*${{ matrix.platform }}*_${{ matrix.arch }}.whl')
if [ -z "$WHL" ]; then echo "No wheel found"; exit 1; fi
unzip -l $WHL
Expand Down

0 comments on commit 3edc8d9

Please sign in to comment.