summaryrefslogtreecommitdiffstats
path: root/.travis/common/post-upload.sh
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2021-10-12 14:35:57 +0200
committerFearlessTobi <thm.frey@gmail.com>2021-10-12 14:35:57 +0200
commitbd509cedb8c2852085abda8adc130944afe21b4a (patch)
tree7747029dadf9e39051cafcfec9420c703b1e6e1d /.travis/common/post-upload.sh
parentcommon/fs/path_util: Slightly refactor PathManagerImpl's constructor (diff)
downloadyuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.gz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.bz2
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.lz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.xz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.zst
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.zip
Diffstat (limited to '')
-rwxr-xr-x.travis/common/post-upload.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/.travis/common/post-upload.sh b/.travis/common/post-upload.sh
deleted file mode 100755
index 28735a9cf..000000000
--- a/.travis/common/post-upload.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash -ex
-
-# Copy documentation
-cp license.txt "$REV_NAME"
-cp README.md "$REV_NAME"
-
-tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME"
-
-# Find out what release we are building
-if [ -z $TRAVIS_TAG ]; then
- RELEASE_NAME=head
-else
- RELEASE_NAME=$(echo $TRAVIS_TAG | cut -d- -f1)
- if [ "$NAME" = "MinGW build" ]; then
- RELEASE_NAME="${RELEASE_NAME}-mingw"
- fi
-fi
-
-mv "$REV_NAME" $RELEASE_NAME
-
-7z a "$REV_NAME.7z" $RELEASE_NAME
-
-# move the compiled archive into the artifacts directory to be uploaded by travis releases
-mv "$ARCHIVE_NAME" artifacts/
-mv "$REV_NAME.7z" artifacts/