我正在尝试使用 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