]> www.infradead.org Git - users/sagi/nvme-cli.git/commitdiff
build: Update library paths for AppImage
authorDaniel Wagner <dwagner@suse.de>
Fri, 10 Feb 2023 10:55:11 +0000 (11:55 +0100)
committerDaniel Wagner <dwagner@suse.de>
Fri, 10 Feb 2023 12:36:30 +0000 (13:36 +0100)
Ubuntu uses a multilib setup hence the libraries are not found
in /lib64.

Signed-off-by: Daniel Wagner <dwagner@suse.de>
.github/AppImageBuilder.yml
.github/workflows/appimage.yml

index 3675edf69ca4ec00988f27f353f033182af373dc..67b215c681a6061e0bf637928c9dc0f533728e36 100644 (file)
@@ -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
index c64dfb3e8766290e2f069aea0c5eb53328479984..54fadc78a1ecc534869c89cea5877d5ad94f65b8 100644 (file)
@@ -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'