diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2017-10-06 20:58:48 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2017-10-07 12:10:03 +0100 |
commit | 15a2388a33b1306dcaf16b62432c7a13b40ca2a3 (patch) | |
tree | 6b1cf31a0e5a02359131d0d11f17b35a009e6a1e /.travis/linux/upload.sh | |
parent | 74d4050924e63f98c76570cafb5a6ad95d2ea5b1 (diff) |
travis: Split build scripts for different platforms
This commit also separates clang-format from the linux build, closing #2702.
Diffstat (limited to '.travis/linux/upload.sh')
-rwxr-xr-x | .travis/linux/upload.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis/linux/upload.sh b/.travis/linux/upload.sh new file mode 100755 index 000000000..dd265e0fd --- /dev/null +++ b/.travis/linux/upload.sh @@ -0,0 +1,14 @@ +#!/bin/bash -ex + +. .travis/common/pre-upload.sh + +REV_NAME="citra-linux-${GITDATE}-${GITREV}" +ARCHIVE_NAME="${REV_NAME}.tar.xz" +COMPRESSION_FLAGS="-cJvf" + +mkdir "$REV_NAME" + +cp build/src/citra/citra "$REV_NAME" +cp build/src/citra_qt/citra-qt "$REV_NAME" + +. .travis/common/post-upload.sh |