Skip to content

Commit

Permalink
Force run of ldconfig to make .so links in installer
Browse files Browse the repository at this point in the history
Should not be needed but without it, libffi.so.6 is not found.
  • Loading branch information
llimeht committed Oct 29, 2022
1 parent 31102a3 commit 1428d9b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ jobs:
mkdir -p dist
pyinstaller sasview.spec
cd dist
# the following builds a symlink farm in the package; it should
# not be necessary, but without it, there will be lots of errors
# about .so not found under linux.
command -v ldconfig >/dev/null 2>&1 && ldconfig -n sasview
tar zcf sasview-pyinstaller-dist.tar.gz sasview
- name: Build sasview installer with INNO (Windows)
Expand Down

0 comments on commit 1428d9b

Please sign in to comment.