diff options
Diffstat (limited to '.travis/linux-mingw/docker.sh')
| -rwxr-xr-x | .travis/linux-mingw/docker.sh | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/.travis/linux-mingw/docker.sh b/.travis/linux-mingw/docker.sh new file mode 100755 index 000000000..d15c3f6e8 --- /dev/null +++ b/.travis/linux-mingw/docker.sh | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | cd /yuzu | ||
| 4 | MINGW_PACKAGES="sdl2-mingw-w64 qt5base-mingw-w64 qt5tools-mingw-w64 libsamplerate-mingw-w64 qt5multimedia-mingw-w64" | ||
| 5 | apt-get update | ||
| 6 | apt-get install -y gpg wget git python3-pip python ccache g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 mingw-w64-tools cmake | ||
| 7 | echo 'deb http://ppa.launchpad.net/tobydox/mingw-w64/ubuntu bionic main ' > /etc/apt/sources.list.d/extras.list | ||
| 8 | apt-key adv --keyserver keyserver.ubuntu.com --recv '72931B477E22FEFD47F8DECE02FE5F12ADDE29B2' | ||
| 9 | apt-get update | ||
| 10 | apt-get install -y ${MINGW_PACKAGES} | ||
| 11 | |||
| 12 | # fix a problem in current MinGW headers | ||
| 13 | wget -q https://raw.githubusercontent.com/Alexpux/mingw-w64/d0d7f784833bbb0b2d279310ddc6afb52fe47a46/mingw-w64-headers/crt/errno.h -O /usr/x86_64-w64-mingw32/include/errno.h | ||
| 14 | # override Travis CI unreasonable ccache size | ||
| 15 | echo 'max_size = 3.0G' > "$HOME/.ccache/ccache.conf" | ||
| 16 | |||
| 17 | # Dirty hack to trick unicorn makefile into believing we are in a MINGW system | ||
| 18 | mv /bin/uname /bin/uname1 && echo -e '#!/bin/sh\necho MINGW64' >> /bin/uname | ||
| 19 | chmod +x /bin/uname | ||
| 20 | |||
| 21 | # Dirty hack to trick unicorn makefile into believing we have cmd | ||
| 22 | echo '' >> /bin/cmd | ||
| 23 | chmod +x /bin/cmd | ||
| 24 | |||
| 25 | mkdir build && cd build | ||
| 26 | cmake .. -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MinGWCross.cmake" -DUSE_CCACHE=ON -DYUZU_USE_BUNDLED_UNICORN=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DCMAKE_BUILD_TYPE=Release | ||
| 27 | make -j4 | ||
| 28 | |||
| 29 | # Clean up the dirty hacks | ||
| 30 | rm /bin/uname && mv /bin/uname1 /bin/uname | ||
| 31 | rm /bin/cmd | ||
| 32 | |||
| 33 | ccache -s | ||
| 34 | |||
| 35 | echo "Tests skipped" | ||
| 36 | #ctest -VV -C Release | ||
| 37 | |||
| 38 | echo 'Prepare binaries...' | ||
| 39 | cd .. | ||
| 40 | mkdir package | ||
| 41 | |||
| 42 | QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' | ||
| 43 | find build/ -name "yuzu*.exe" -exec cp {} 'package' \; | ||
| 44 | |||
| 45 | # copy Qt plugins | ||
| 46 | mkdir package/platforms | ||
| 47 | cp "${QT_PLATFORM_DLL_PATH}/qwindows.dll" package/platforms/ | ||
| 48 | cp -rv "${QT_PLATFORM_DLL_PATH}/../mediaservice/" package/ | ||
| 49 | cp -rv "${QT_PLATFORM_DLL_PATH}/../imageformats/" package/ | ||
| 50 | rm -f package/mediaservice/*d.dll | ||
| 51 | |||
| 52 | for i in package/*.exe; do | ||
| 53 | # we need to process pdb here, however, cv2pdb | ||
| 54 | # does not work here, so we just simply strip all the debug symbols | ||
| 55 | x86_64-w64-mingw32-strip "${i}" | ||
| 56 | done | ||
| 57 | |||
| 58 | pip3 install pefile | ||
| 59 | python3 .travis/linux-mingw/scan_dll.py package/*.exe "package/" | ||