This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-06 19:58:48 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
. .travis/common/pre-upload.sh
|
|
|
|
|
2018-01-13 21:37:06 +00:00
|
|
|
REV_NAME="yuzu-linux-${GITDATE}-${GITREV}"
|
2017-10-06 19:58:48 +00:00
|
|
|
ARCHIVE_NAME="${REV_NAME}.tar.xz"
|
|
|
|
COMPRESSION_FLAGS="-cJvf"
|
|
|
|
|
|
|
|
mkdir "$REV_NAME"
|
|
|
|
|
2018-01-15 09:42:40 +00:00
|
|
|
cp build/bin/yuzu-cmd "$REV_NAME"
|
|
|
|
cp build/bin/yuzu "$REV_NAME"
|
2017-10-06 19:58:48 +00:00
|
|
|
|
|
|
|
. .travis/common/post-upload.sh
|