From 7da2348dac3b063715758142634af8ea546459dc Mon Sep 17 00:00:00 2001 From: John Kerl Date: Wed, 22 May 2024 09:52:08 -0400 Subject: [PATCH] [python/ci] Debug MacOS 14 wheel-smoke-test issue --- .github/workflows/python-packaging.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/python-packaging.yml b/.github/workflows/python-packaging.yml index 2858f92e74..6bf03b5c90 100644 --- a/.github/workflows/python-packaging.yml +++ b/.github/workflows/python-packaging.yml @@ -133,10 +133,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