From: Daniel Wagner Date: Fri, 10 Feb 2023 10:55:11 +0000 (+0100) Subject: build: Update library paths for AppImage X-Git-Tag: v2.4~73^2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f7bdb5a772144d8bd7c6bff226cb4bcb41431d8d;p=users%2Fsagi%2Fnvme-cli.git build: Update library paths for AppImage Ubuntu uses a multilib setup hence the libraries are not found in /lib64. Signed-off-by: Daniel Wagner --- diff --git a/.github/AppImageBuilder.yml b/.github/AppImageBuilder.yml index 3675edf6..67b215c6 100644 --- a/.github/AppImageBuilder.yml +++ b/.github/AppImageBuilder.yml @@ -28,17 +28,15 @@ AppDir: include: - libjson-c5 - libhugetlbfs0 + - libssl3 files: include: - - /lib64/libcrypto.so.3 - - /lib64/libdbus-1.so.3 - - /lib64/libjson-c.so.5 + - libcrypt.so.3 + - libdbus-1.so.3 + - libjson-c.so.5 exclude: - - usr/share/man - - usr/share/doc/*/README.* - - usr/share/doc/*/changelog.* - - usr/share/doc/*/NEWS.* - - usr/share/doc/*/TODO.* + - usr/share/man + - usr/share/doc test: fedora-30: image: appimagecrafters/tests-env:fedora-30 diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index c64dfb3e..54fadc78 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: install dependencies - run: sudo apt-get install libjson-c-dev libdbus-1-dev libhugetlbfs-dev + run: sudo apt-get install libjson-c-dev libssl-dev libdbus-1-dev libhugetlbfs-dev - uses: actions/setup-python@v4 with: python-version: '3.x'