Skip to content

Commit

Permalink
Find local pytiledbsoma shared object to run ldd
Browse files Browse the repository at this point in the history
  • Loading branch information
jdblischak committed Nov 22, 2023
1 parent 4e7beab commit 713ddd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,9 @@ jobs:
python -m pip -v install -e apis/python
pip list
- name: Confirm linking
run: ldd $pythonLocation/lib/python*/site-packages/tiledbsoma/pytiledbsoma.cpython-*-x86_64-linux-gnu.so
run: |
find $CONDA_PREFIX -name '*.so'
find $CONDA_PREFIX -name '*.so' | xargs ldd
- name: Test tiledbsoma-py
run: |
python -c "import tiledbsoma; print('successful import')"
Expand Down

0 comments on commit 713ddd3

Please sign in to comment.