travis: running mingw build on travis ci

This commit also fixed a broken cmake dependency with unicorn
This commit is contained in:
tech4me
2018-08-31 20:08:03 +02:00
parent c69dc5acf9
commit a8f54f96fc
12 changed files with 273 additions and 16 deletions

13
.travis/linux-mingw/upload.sh Executable file
View File

@ -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