summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2021-06-09 17:16:29 -0400
committerGravatar lat9nq2021-06-09 17:16:29 -0400
commit6eeb532c96e8148eed665602fc0f32fbe5ce0ccc (patch)
treed6fb69befc7bbe80d0dc5282dadf886b01c5e9e9
parentMerge pull request #6434 from lioncash/tcontext (diff)
downloadyuzu-6eeb532c96e8148eed665602fc0f32fbe5ce0ccc.tar.gz
yuzu-6eeb532c96e8148eed665602fc0f32fbe5ce0ccc.tar.xz
yuzu-6eeb532c96e8148eed665602fc0f32fbe5ce0ccc.zip
ci: common: Remove 7z packaging
Removes the 7z from being package during CI, as only .tar.xz preserves information needed on Linux, and otherwise is just extremely redundant to package in addition to the .tar.xz. This affects Linux releases and PR-verify artifacts only. MSVC releases do not use this script to my knowledge.
-rw-r--r--.ci/scripts/common/post-upload.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh
index 99e79fcb6..387431564 100644
--- a/.ci/scripts/common/post-upload.sh
+++ b/.ci/scripts/common/post-upload.sh
@@ -9,11 +9,5 @@ cp "${REV_NAME}-source.tar.xz" "$DIR_NAME"
9 9
10tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$DIR_NAME" 10tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$DIR_NAME"
11 11
12mv "$DIR_NAME" $RELEASE_NAME
13mv "${REV_NAME}-source.tar.xz" $RELEASE_NAME
14
157z a "$REV_NAME.7z" $RELEASE_NAME
16
17# move the compiled archive into the artifacts directory to be uploaded by travis releases 12# move the compiled archive into the artifacts directory to be uploaded by travis releases
18mv "$ARCHIVE_NAME" "${ARTIFACTS_DIR}/" 13mv "$ARCHIVE_NAME" "${ARTIFACTS_DIR}/"
19mv "$REV_NAME.7z" "${ARTIFACTS_DIR}/"