travis: MinGW build on Travis CI

... 1. updated submodule libressl
    2. suggestion from @jroweboy
This commit is contained in:
liushuyu 2018-04-12 15:43:32 -06:00
parent edcea90948
commit 7db0588d6b
No known key found for this signature in database
GPG key ID: 23D1CE4534419437
8 changed files with 234 additions and 1 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="citra-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