Skip to content

Commit

Permalink
CI,DBG: Only run ldd on so files.
Browse files Browse the repository at this point in the history
  • Loading branch information
DWesl committed May 25, 2024
1 parent 0d38af9 commit a962d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
installed_files="$(python -m pip show --files wrf-python | sed -E -e "/\\w+:/ d" -e "/^\s+/ s|^\s+|${prefix}/|g")"
ls -l ${installed_files}
file ${installed_files}
ldd ${installed_files}
ldd $(echo ${installed_files} | grep -v -e ".py" -e ".dist-info")
python -vvv -d -c "import wrf"
- name: Run tests
run: |
Expand Down

0 comments on commit a962d9f

Please sign in to comment.