diff options
| author | 2019-11-06 23:26:29 -0500 | |
|---|---|---|
| committer | 2019-11-06 23:26:29 -0500 | |
| commit | e07dfc4da355ee9b651d068453baf5af3a6817e7 (patch) | |
| tree | 10488bbac4b961bfd4f121c2515b5cd19e9c1eb3 /.ci/scripts/linux | |
| parent | Merge pull request #3077 from yuzu-emu/revert-3073-azure-rename-partial (diff) | |
| download | yuzu-e07dfc4da355ee9b651d068453baf5af3a6817e7.tar.gz yuzu-e07dfc4da355ee9b651d068453baf5af3a6817e7.tar.xz yuzu-e07dfc4da355ee9b651d068453baf5af3a6817e7.zip | |
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, 9 insertions, 3 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index 0d131d1dd..fe4e6b2ac 100644 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh | |||
| @@ -6,9 +6,15 @@ 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 | mkdir "$REV_NAME" | 9 | if [ "${RELEASE_NAME}" = "mainline" ]; then |
| 10 | DIR_NAME="${REV_NAME}" | ||
| 11 | else | ||
| 12 | DIR_NAME="${REV_NAME}_${RELEASE_NAME}" | ||
| 13 | fi | ||
| 10 | 14 | ||
| 11 | cp build/bin/yuzu-cmd "$REV_NAME" | 15 | mkdir "$DIR_NAME" |
| 12 | cp build/bin/yuzu "$REV_NAME" | 16 | |
| 17 | cp build/bin/yuzu-cmd "$DIR_NAME" | ||
| 18 | cp build/bin/yuzu "$DIR_NAME" | ||
| 13 | 19 | ||
| 14 | . .ci/scripts/common/post-upload.sh | 20 | . .ci/scripts/common/post-upload.sh |