From bd509cedb8c2852085abda8adc130944afe21b4a Mon Sep 17 00:00:00 2001 From: FearlessTobi Date: Tue, 12 Oct 2021 14:35:57 +0200 Subject: Build system: remove references to travis Co-Authored-By: Vitor K --- .travis/linux-mingw/docker.sh | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 .travis/linux-mingw/docker.sh (limited to '.travis/linux-mingw/docker.sh') diff --git a/.travis/linux-mingw/docker.sh b/.travis/linux-mingw/docker.sh deleted file mode 100755 index 80d7dfe9b..000000000 --- a/.travis/linux-mingw/docker.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -ex - -cd /yuzu -# override Travis CI unreasonable ccache size -echo 'max_size = 3.0G' > "$HOME/.ccache/ccache.conf" - -mkdir build && cd build -cmake .. -G Ninja -DCMAKE_TOOLCHAIN_FILE="$(pwd)/../CMakeModules/MinGWCross.cmake" -DUSE_CCACHE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DCMAKE_BUILD_TYPE=Release -ninja - -# Clean up the dirty hacks -rm /bin/uname && mv /bin/uname1 /bin/uname -rm /bin/cmd - -ccache -s - -echo "Tests skipped" -#ctest -VV -C Release - -echo 'Prepare binaries...' -cd .. -mkdir package - -QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' -find build/ -name "yuzu*.exe" -exec cp {} 'package' \; - -# copy Qt plugins -mkdir package/platforms -cp "${QT_PLATFORM_DLL_PATH}/qwindows.dll" package/platforms/ -cp -rv "${QT_PLATFORM_DLL_PATH}/../mediaservice/" package/ -cp -rv "${QT_PLATFORM_DLL_PATH}/../imageformats/" package/ -rm -f package/mediaservice/*d.dll - -for i in package/*.exe; do - # we need to process pdb here, however, cv2pdb - # does not work here, so we just simply strip all the debug symbols - x86_64-w64-mingw32-strip "${i}" -done - -pip3 install pefile -python3 .travis/linux-mingw/scan_dll.py package/*.exe "package/" -python3 .travis/linux-mingw/scan_dll.py package/imageformats/*.dll "package/" -- cgit v1.2.3