summaryrefslogtreecommitdiffstats
path: root/.travis/linux-mingw/upload.sh
diff options
context:
space:
mode:
authortech4me <guiwanglong@gmail.com>2018-08-31 20:08:03 +0200
committertech4me <guiwanglong@gmail.com>2018-09-19 20:22:14 +0200
commita8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch)
tree92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/linux-mingw/upload.sh
parentMerge pull request #1196 from FearlessTobi/ccache-consistency (diff)
downloadyuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.gz
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.bz2
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.lz
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.xz
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.zst
yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.zip
Diffstat (limited to '.travis/linux-mingw/upload.sh')
-rwxr-xr-x.travis/linux-mingw/upload.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis/linux-mingw/upload.sh b/.travis/linux-mingw/upload.sh
new file mode 100755
index 000000000..66e896bc4
--- /dev/null
+++ b/.travis/linux-mingw/upload.sh
@@ -0,0 +1,13 @@
+#!/bin/bash -ex
+
+. .travis/common/pre-upload.sh
+
+REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
+ARCHIVE_NAME="${REV_NAME}.tar.gz"
+COMPRESSION_FLAGS="-czvf"
+
+mkdir "$REV_NAME"
+# get around the permission issues
+cp -r package/* "$REV_NAME"
+
+. .travis/common/post-upload.sh