1

我正在尝试使用 Gitlab CI 构建 AppImage,但 Ubuntu Docker 映像中似乎没有 fuse。有没有办法在这个 Docker 镜像或其他可用的镜像上构建一个 AppImage,或者我需要自己制作。

我的.gitlab-ci.yml

image: ubuntu:latest
debian packager:
    stage: build
    script:
        - ./installer.sh --make-deb
    artifacts:
        paths:
            - iicalc.deb
    only:
        - development
AppImage packager:
    stage: build
    script:
        - ./installer.sh --make-appImage
    artifacts:
        paths:
            - ImaginaryInfinity_Calculator-x86_64.AppImage
    only:
        - development

中的相关部分installer.sh

ARCH=x86_64 ./appimagetool-x86_64.AppImage iicalc-appImage

我在管道运行时遇到的错误:

dlopen(): error loading libfuse.so.2
AppImages require FUSE to run. 
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information

链接到存储库以防您想查看其他任何内容(AppImage 相关的东西在开发分支上):https ://gitlab.com/TurboWafflz/ImaginaryInfinity-Calculator

4

1 回答 1

3

您需要提取 AppImage 才能使用它。像这样:

sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /opt/appimagetool
sudo chmod +x /opt/appimagetool
cd /opt/; sudo /opt/appimagetool --appimage-extract
sudo mv /opt/squashfs-root /opt/appimagetool.AppDir
sudo ln -s /opt/appimagetool.AppDir/AppRun /usr/local/bin/appimagetool

阅读更多:

于 2020-09-12T05:10:53.057 回答