diff options
| author | 2019-11-06 21:36:50 -0500 | |
|---|---|---|
| committer | 2019-11-06 21:36:50 -0500 | |
| commit | f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42 (patch) | |
| tree | 7c184e88467e0851f23f5b88b67b3873fe03f179 /.ci/scripts/linux | |
| parent | Merge pull request #3057 from ReinUsesLisp/buffer-sub-data (diff) | |
| download | yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.gz yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.xz yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.zip | |
Revert "ci: Rename build folder only on non-mainline builds"
Diffstat (limited to '.ci/scripts/linux')
| -rw-r--r-- | .ci/scripts/linux/upload.sh | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index ecd77e267..0d131d1dd 100644 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh | |||
| @@ -6,15 +6,9 @@ REV_NAME="yuzu-linux-${GITDATE}-${GITREV}" | |||
| 6 | ARCHIVE_NAME="${REV_NAME}.tar.xz" | 6 | ARCHIVE_NAME="${REV_NAME}.tar.xz" |
| 7 | COMPRESSION_FLAGS="-cJvf" | 7 | COMPRESSION_FLAGS="-cJvf" |
| 8 | 8 | ||
| 9 | if [ "${RELEASE_NAME}" = "mainline" ]; then | 9 | mkdir "$REV_NAME" |
| 10 | DIR_NAME="${REV_NAME}_${RELEASE_NAME}" | ||
| 11 | else | ||
| 12 | DIR_NAME="${REV_NAME}" | ||
| 13 | fi | ||
| 14 | 10 | ||
| 15 | mkdir "$DIR_NAME" | 11 | cp build/bin/yuzu-cmd "$REV_NAME" |
| 16 | 12 | cp build/bin/yuzu "$REV_NAME" | |
| 17 | cp build/bin/yuzu-cmd "$DIR_NAME" | ||
| 18 | cp build/bin/yuzu "$DIR_NAME" | ||
| 19 | 13 | ||
| 20 | . .ci/scripts/common/post-upload.sh | 14 | . .ci/scripts/common/post-upload.sh |