diff options
Diffstat (limited to '.ci/scripts/linux/upload.sh')
| -rw-r--r-- | .ci/scripts/linux/upload.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index fe4e6b2ac..b2ea07388 100644 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | . .ci/scripts/common/pre-upload.sh | 3 | . .ci/scripts/common/pre-upload.sh |
| 4 | 4 | ||
| 5 | APPIMAGE_NAME="yuzu-${GITDATE}-${GITREV}.AppImage" | ||
| 5 | REV_NAME="yuzu-linux-${GITDATE}-${GITREV}" | 6 | REV_NAME="yuzu-linux-${GITDATE}-${GITREV}" |
| 6 | ARCHIVE_NAME="${REV_NAME}.tar.xz" | 7 | ARCHIVE_NAME="${REV_NAME}.tar.xz" |
| 7 | COMPRESSION_FLAGS="-cJvf" | 8 | COMPRESSION_FLAGS="-cJvf" |
| @@ -17,4 +18,24 @@ mkdir "$DIR_NAME" | |||
| 17 | cp build/bin/yuzu-cmd "$DIR_NAME" | 18 | cp build/bin/yuzu-cmd "$DIR_NAME" |
| 18 | cp build/bin/yuzu "$DIR_NAME" | 19 | cp build/bin/yuzu "$DIR_NAME" |
| 19 | 20 | ||
| 21 | # Build an AppImage | ||
| 22 | cd build | ||
| 23 | |||
| 24 | wget -nc https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage | ||
| 25 | chmod 755 appimagetool-x86_64.AppImage | ||
| 26 | |||
| 27 | if [ "${RELEASE_NAME}" = "mainline" ]; then | ||
| 28 | # Generate update information if releasing to mainline | ||
| 29 | ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|yuzu-emu|yuzu-${RELEASE_NAME}|latest|yuzu-*.AppImage.zsync" AppDir "${APPIMAGE_NAME}" | ||
| 30 | else | ||
| 31 | ./appimagetool-x86_64.AppImage AppDir "${APPIMAGE_NAME}" | ||
| 32 | fi | ||
| 33 | cd .. | ||
| 34 | |||
| 35 | # Copy the AppImage and update info to the artifacts directory and avoid compressing it | ||
| 36 | cp "build/${APPIMAGE_NAME}" "${ARTIFACTS_DIR}/" | ||
| 37 | if [ -f "build/${APPIMAGE_NAME}.zsync" ]; then | ||
| 38 | cp "build/${APPIMAGE_NAME}.zsync" "${ARTIFACTS_DIR}/" | ||
| 39 | fi | ||
| 40 | |||
| 20 | . .ci/scripts/common/post-upload.sh | 41 | . .ci/scripts/common/post-upload.sh |