diff options
author | seth <getchoo@tuta.io> | 2023-06-16 14:34:44 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-06-16 14:34:44 -0400 |
commit | 45cce1d19a7e83dcb8db35ed1f203a175ce50635 (patch) | |
tree | dd6c558b159333c50aa29b3892c0c071571c2cb4 /.github | |
parent | 412349ac58be5729b72a80c2cc0b7f5342667fea (diff) | |
download | PrismLauncher-45cce1d19a7e83dcb8db35ed1f203a175ce50635.tar.gz PrismLauncher-45cce1d19a7e83dcb8db35ed1f203a175ce50635.tar.bz2 PrismLauncher-45cce1d19a7e83dcb8db35ed1f203a175ce50635.zip |
fix(appimage): bundle generic opengl lib
Signed-off-by: seth <getchoo@tuta.io>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6a6ecea..e75c9e74 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -250,6 +250,7 @@ jobs: wget "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" ${{ github.workspace }}/.github/scripts/prepare_JREs.sh + sudo apt install libopengl0 - name: Add QT_HOST_PATH var (Windows MSVC arm64) if: runner.os == 'Windows' && matrix.architecture == 'arm64' @@ -482,7 +483,8 @@ jobs: cp -r /home/runner/work/PrismLauncher/Qt/${{ matrix.qt_version }}/gcc_64/plugins/iconengines/* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/plugins/iconengines cp /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ - cp /usr/lib/x86_64-linux-gnu/libssl.so.1.1 ${{ env.INSTALL_APPIMAGE_DIR }}//usr/lib/ + cp /usr/lib/x86_64-linux-gnu/libssl.so.1.1 ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ + cp /usr/lib/x86_64-linux-gnu/libOpenGL.so.0* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib" LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-8-openjdk/lib/amd64/server" |