diff options
author | tech4me <guiwanglong@gmail.com> | 2018-08-31 20:08:03 +0200 |
---|---|---|
committer | tech4me <guiwanglong@gmail.com> | 2018-09-19 14:22:14 -0400 |
commit | a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch) | |
tree | 92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/common/post-upload.sh | |
parent | c69dc5acf9faf3817337dfd5883fd3ef55a73326 (diff) |
travis: running mingw build on travis ci
This commit also fixed a broken cmake dependency with unicorn
Diffstat (limited to '.travis/common/post-upload.sh')
-rwxr-xr-x | .travis/common/post-upload.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis/common/post-upload.sh b/.travis/common/post-upload.sh index 90deaaec8..28735a9cf 100755 --- a/.travis/common/post-upload.sh +++ b/.travis/common/post-upload.sh @@ -11,6 +11,9 @@ 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 |