diff options
| author | 2021-05-16 14:43:02 -0400 | |
|---|---|---|
| committer | 2021-05-16 14:43:02 -0400 | |
| commit | bfe8816f7c2bb4338efff9763a6f7abb1b66977a (patch) | |
| tree | a694da957671f33568079b4ab8fb95e071404433 | |
| parent | Merge pull request #6284 from ameerj/shantae-fix (diff) | |
| parent | ci: linux: Freeze AppImage binaries (diff) | |
| download | yuzu-bfe8816f7c2bb4338efff9763a6f7abb1b66977a.tar.gz yuzu-bfe8816f7c2bb4338efff9763a6f7abb1b66977a.tar.xz yuzu-bfe8816f7c2bb4338efff9763a6f7abb1b66977a.zip | |
Merge pull request #6324 from lat9nq/appimage-freeze
ci: linux: Freeze AppImage binaries
| -rwxr-xr-x | .ci/scripts/linux/docker.sh | 8 | ||||
| -rw-r--r-- | .ci/scripts/linux/upload.sh | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.ci/scripts/linux/docker.sh b/.ci/scripts/linux/docker.sh index 1af5ded3d..9b451d3ab 100755 --- a/.ci/scripts/linux/docker.sh +++ b/.ci/scripts/linux/docker.sh | |||
| @@ -30,10 +30,10 @@ make install DESTDIR=AppDir | |||
| 30 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester | 30 | rm -vf AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester |
| 31 | 31 | ||
| 32 | # Download tools needed to build an AppImage | 32 | # Download tools needed to build an AppImage |
| 33 | wget -nc https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage | 33 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/linuxdeploy-x86_64.AppImage |
| 34 | wget -nc https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage | 34 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/linuxdeploy-plugin-qt-x86_64.AppImage |
| 35 | wget -nc https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/AppRun-patched-x86_64 | 35 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/AppRun-patched-x86_64 |
| 36 | wget -nc https://github.com/darealshinji/AppImageKit-checkrt/releases/download/continuous/exec-x86_64.so | 36 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/exec-x86_64.so |
| 37 | # Set executable bit | 37 | # Set executable bit |
| 38 | chmod 755 \ | 38 | chmod 755 \ |
| 39 | AppRun-patched-x86_64 \ | 39 | AppRun-patched-x86_64 \ |
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index b2ea07388..208cd0d04 100644 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh | |||
| @@ -21,7 +21,7 @@ cp build/bin/yuzu "$DIR_NAME" | |||
| 21 | # Build an AppImage | 21 | # Build an AppImage |
| 22 | cd build | 22 | cd build |
| 23 | 23 | ||
| 24 | wget -nc https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage | 24 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/appimagetool-x86_64.AppImage |
| 25 | chmod 755 appimagetool-x86_64.AppImage | 25 | chmod 755 appimagetool-x86_64.AppImage |
| 26 | 26 | ||
| 27 | if [ "${RELEASE_NAME}" = "mainline" ]; then | 27 | if [ "${RELEASE_NAME}" = "mainline" ]; then |