summaryrefslogtreecommitdiffstats
path: root/.travis/linux
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2021-10-12 14:35:57 +0200
committerFearlessTobi <thm.frey@gmail.com>2021-10-12 14:35:57 +0200
commitbd509cedb8c2852085abda8adc130944afe21b4a (patch)
tree7747029dadf9e39051cafcfec9420c703b1e6e1d /.travis/linux
parentcommon/fs/path_util: Slightly refactor PathManagerImpl's constructor (diff)
downloadyuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.gz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.bz2
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.lz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.xz
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.tar.zst
yuzu-bd509cedb8c2852085abda8adc130944afe21b4a.zip
Diffstat (limited to '')
-rwxr-xr-x.travis/linux-mingw/build.sh3
-rwxr-xr-x.travis/linux-mingw/deps.sh3
-rwxr-xr-x.travis/linux-mingw/docker.sh42
-rw-r--r--.travis/linux-mingw/scan_dll.py106
-rwxr-xr-x.travis/linux-mingw/upload.sh13
-rwxr-xr-x.travis/linux/build.sh4
-rwxr-xr-x.travis/linux/deps.sh3
-rwxr-xr-x.travis/linux/docker.sh11
-rwxr-xr-x.travis/linux/upload.sh14
9 files changed, 0 insertions, 199 deletions
diff --git a/.travis/linux-mingw/build.sh b/.travis/linux-mingw/build.sh
deleted file mode 100755
index b12d70b12..000000000
--- a/.travis/linux-mingw/build.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash -ex
-mkdir "$HOME/.ccache" || true
-docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh
diff --git a/.travis/linux-mingw/deps.sh b/.travis/linux-mingw/deps.sh
deleted file mode 100755
index 55b5d6006..000000000
--- a/.travis/linux-mingw/deps.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh -ex
-
-docker pull yuzuemu/build-environments:linux-mingw
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/"
diff --git a/.travis/linux-mingw/scan_dll.py b/.travis/linux-mingw/scan_dll.py
deleted file mode 100644
index 163183f2e..000000000
--- a/.travis/linux-mingw/scan_dll.py
+++ /dev/null
@@ -1,106 +0,0 @@
-import pefile
-import sys
-import re
-import os
-import queue
-import shutil
-
-# constant definitions
-KNOWN_SYS_DLLS = ['WINMM.DLL', 'MSVCRT.DLL', 'VERSION.DLL', 'MPR.DLL',
- 'DWMAPI.DLL', 'UXTHEME.DLL', 'DNSAPI.DLL', 'IPHLPAPI.DLL']
-# below is for Ubuntu 18.04 with specified PPA enabled, if you are using
-# other distro or different repositories, change the following accordingly
-DLL_PATH = [
- '/usr/x86_64-w64-mingw32/bin/',
- '/usr/x86_64-w64-mingw32/lib/',
- '/usr/lib/gcc/x86_64-w64-mingw32/7.3-posix/'
-]
-
-missing = []
-
-
-def parse_imports(file_name):
- results = []
- pe = pefile.PE(file_name, fast_load=True)
- pe.parse_data_directories()
-
- for entry in pe.DIRECTORY_ENTRY_IMPORT:
- current = entry.dll.decode()
- current_u = current.upper() # b/c Windows is often case insensitive
- # here we filter out system dlls
- # dll w/ names like *32.dll are likely to be system dlls
- if current_u.upper() not in KNOWN_SYS_DLLS and not re.match(string=current_u, pattern=r'.*32\.DLL'):
- results.append(current)
-
- return results
-
-
-def parse_imports_recursive(file_name, path_list=[]):
- q = queue.Queue() # create a FIFO queue
- # file_name can be a string or a list for the convience
- if isinstance(file_name, str):
- q.put(file_name)
- elif isinstance(file_name, list):
- for i in file_name:
- q.put(i)
- full_list = []
- while q.qsize():
- current = q.get_nowait()
- print('> %s' % current)
- deps = parse_imports(current)
- # if this dll does not have any import, ignore it
- if not deps:
- continue
- for dep in deps:
- # the dependency already included in the list, skip
- if dep in full_list:
- continue
- # find the requested dll in the provided paths
- full_path = find_dll(dep)
- if not full_path:
- missing.append(dep)
- continue
- full_list.append(dep)
- q.put(full_path)
- path_list.append(full_path)
- return full_list
-
-
-def find_dll(name):
- for path in DLL_PATH:
- for root, _, files in os.walk(path):
- for f in files:
- if name.lower() == f.lower():
- return os.path.join(root, f)
-
-
-def deploy(name, dst, dry_run=False):
- dlls_path = []
- parse_imports_recursive(name, dlls_path)
- for dll_entry in dlls_path:
- if not dry_run:
- shutil.copy(dll_entry, dst)
- else:
- print('[Dry-Run] Copy %s to %s' % (dll_entry, dst))
- print('Deploy completed.')
- return dlls_path
-
-
-def main():
- if len(sys.argv) < 3:
- print('Usage: %s [files to examine ...] [target deploy directory]')
- return 1
- to_deploy = sys.argv[1:-1]
- tgt_dir = sys.argv[-1]
- if not os.path.isdir(tgt_dir):
- print('%s is not a directory.' % tgt_dir)
- return 1
- print('Scanning dependencies...')
- deploy(to_deploy, tgt_dir)
- if missing:
- print('Following DLLs are not found: %s' % ('\n'.join(missing)))
- return 0
-
-
-if __name__ == '__main__':
- main()
diff --git a/.travis/linux-mingw/upload.sh b/.travis/linux-mingw/upload.sh
deleted file mode 100755
index 66e896bc4..000000000
--- a/.travis/linux-mingw/upload.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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
diff --git a/.travis/linux/build.sh b/.travis/linux/build.sh
deleted file mode 100755
index 0c7fb8c9d..000000000
--- a/.travis/linux/build.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash -ex
-
-mkdir -p "$HOME/.ccache"
-docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/home/yuzu/.ccache yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.travis/linux/docker.sh
diff --git a/.travis/linux/deps.sh b/.travis/linux/deps.sh
deleted file mode 100755
index 8d23c517d..000000000
--- a/.travis/linux/deps.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh -ex
-
-docker pull yuzuemu/build-environments:linux-fresh
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh
deleted file mode 100755
index 166fb6d4c..000000000
--- a/.travis/linux/docker.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash -ex
-
-cd /yuzu
-
-mkdir build && cd build
-cmake .. -G Ninja -DYUZU_USE_QT_WEB_ENGINE=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON
-ninja
-
-ccache -s
-
-ctest -VV -C Release
diff --git a/.travis/linux/upload.sh b/.travis/linux/upload.sh
deleted file mode 100755
index 61842be12..000000000
--- a/.travis/linux/upload.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash -ex
-
-. .travis/common/pre-upload.sh
-
-REV_NAME="yuzu-linux-${GITDATE}-${GITREV}"
-ARCHIVE_NAME="${REV_NAME}.tar.xz"
-COMPRESSION_FLAGS="-cJvf"
-
-mkdir "$REV_NAME"
-
-cp build/bin/yuzu-cmd "$REV_NAME"
-cp build/bin/yuzu "$REV_NAME"
-
-. .travis/common/post-upload.sh