diff options
author | seth <getchoo@tuta.io> | 2023-06-18 22:06:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 22:06:03 -0400 |
commit | aee0999daaab4294ad9ee54fbdb843806da00816 (patch) | |
tree | bd46d9552f10b0baf7dfca5b6d11fe3c5bf7e477 | |
parent | 12cd8a7bea991c2a8d4b59b1cfc9f7c246819fc9 (diff) | |
parent | 45cce1d19a7e83dcb8db35ed1f203a175ce50635 (diff) | |
download | PrismLauncher-aee0999daaab4294ad9ee54fbdb843806da00816.tar.gz PrismLauncher-aee0999daaab4294ad9ee54fbdb843806da00816.tar.bz2 PrismLauncher-aee0999daaab4294ad9ee54fbdb843806da00816.zip |
Merge pull request #1210 from getchoo/opengl-appimage
fix(appimage): bundle generic opengl lib
-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" |