Skip to content

Commit

Permalink
CI,BUG: Don't run ldd until after python import
Browse files Browse the repository at this point in the history
Mac doesn't call it ldd, not sure what it should be.
  • Loading branch information
DWesl authored Sep 18, 2024
1 parent bb4ff8e commit 80265d6
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 @@ -67,5 +67,5 @@ jobs:
installed_files="$(python -m pip show --files wrf-python | grep -v -E -e '^[-a-zA-Z]+:')"
ls -l ${installed_files}
file ${installed_files}
ldd $(echo ${installed_files} | grep -F -v -e ".py" -e ".dist-info")
python -vvv -dd -c "import wrf"
ldd $(echo ${installed_files} | grep -F -v -e ".py" -e ".dist-info")

0 comments on commit 80265d6

Please sign in to comment.