diff options
| author | 2022-09-28 20:10:47 -0400 | |
|---|---|---|
| committer | 2022-09-28 20:10:47 -0400 | |
| commit | 2e3aad41aa9444c07fdf7df7a121dba3a18509a4 (patch) | |
| tree | 840968d7b6d676e0b3263011bd7abf9f12036f8d | |
| parent | Merge pull request #8940 from german77/silence (diff) | |
| parent | ci/linux: Drop linuxdeploy usage (diff) | |
| download | yuzu-2e3aad41aa9444c07fdf7df7a121dba3a18509a4.tar.gz yuzu-2e3aad41aa9444c07fdf7df7a121dba3a18509a4.tar.xz yuzu-2e3aad41aa9444c07fdf7df7a121dba3a18509a4.zip | |
Merge pull request #8993 from lat9nq/drop-linuxdeploy
ci/linux: Drop linuxdeploy usage
| -rwxr-xr-x | .ci/scripts/linux/docker.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index e85dba029..67726ee0f 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -33,16 +33,14 @@ DESTDIR="$PWD/AppDir" ninja install | |||
| 33 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester | 33 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester |
| 34 | 34 | ||
| 35 | # Download tools needed to build an AppImage | 35 | # Download tools needed to build an AppImage |
| 36 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/linuxdeploy-x86_64.AppImage | 36 | wget -nc https://raw.githubusercontent.com/lat9nq/deploy/main/linux/deploy-linux.sh |
| 37 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/linuxdeploy-plugin-qt-x86_64.AppImage | ||
| 38 | wget -nc https://raw.githubusercontent.com/yuzu-emu/AppImageKit-checkrt/old/AppRun.sh | 37 | wget -nc https://raw.githubusercontent.com/yuzu-emu/AppImageKit-checkrt/old/AppRun.sh |
| 39 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/exec-x86_64.so | 38 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/exec-x86_64.so |
| 40 | # Set executable bit | 39 | # Set executable bit |
| 41 | chmod 755 \ | 40 | chmod 755 \ |
| 41 | deploy-linux.sh \ | ||
| 42 | AppRun.sh \ | 42 | AppRun.sh \ |
| 43 | exec-x86_64.so \ | 43 | exec-x86_64.so \ |
| 44 | linuxdeploy-x86_64.AppImage \ | ||
| 45 | linuxdeploy-plugin-qt-x86_64.AppImage | ||
| 46 | 44 | ||
| 47 | # Workaround for https://github.com/AppImage/AppImageKit/issues/828 | 45 | # Workaround for https://github.com/AppImage/AppImageKit/issues/828 |
| 48 | export APPIMAGE_EXTRACT_AND_RUN=1 | 46 | export APPIMAGE_EXTRACT_AND_RUN=1 |
| @@ -52,7 +50,7 @@ mkdir -p AppDir/usr/optional/libstdc++ | |||
| 52 | mkdir -p AppDir/usr/optional/libgcc_s | 50 | mkdir -p AppDir/usr/optional/libgcc_s |
| 53 | 51 | ||
| 54 | # Deploy yuzu's needed dependencies | 52 | # Deploy yuzu's needed dependencies |
| 55 | ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt | 53 | DEPLOY_QT=1 ./deploy-linux.sh AppDir/usr/bin/yuzu AppDir |
| 56 | 54 | ||
| 57 | # Workaround for libQt5MultimediaGstTools indirectly requiring libwayland-client and breaking Vulkan usage on end-user systems | 55 | # Workaround for libQt5MultimediaGstTools indirectly requiring libwayland-client and breaking Vulkan usage on end-user systems |
| 58 | find AppDir -type f -regex '.*libwayland-client\.so.*' -delete -print | 56 | find AppDir -type f -regex '.*libwayland-client\.so.*' -delete -print |