diff options
| author | 2021-12-12 18:28:52 -0700 | |
|---|---|---|
| committer | 2021-12-13 22:31:19 -0700 | |
| commit | dd72e4dce4641498bd7e73f09afd7d90961c435d (patch) | |
| tree | 39ca50e569b17e002657484be046e0878b355bbc /.ci | |
| parent | video_core/codecs: skip decoders that use hw frames ... (diff) | |
| download | yuzu-dd72e4dce4641498bd7e73f09afd7d90961c435d.tar.gz yuzu-dd72e4dce4641498bd7e73f09afd7d90961c435d.tar.xz yuzu-dd72e4dce4641498bd7e73f09afd7d90961c435d.zip | |
CI: fix CI on Linux
Diffstat (limited to '.ci')
| -rwxr-xr-x | .ci/scripts/windows/docker.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 298421a1a..584b9b39f 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh | |||
| @@ -41,12 +41,11 @@ for i in package/*.exe; do | |||
| 41 | done | 41 | done |
| 42 | 42 | ||
| 43 | pip3 install pefile | 43 | pip3 install pefile |
| 44 | python3 .ci/scripts/windows/scan_dll.py package/*.exe "package/" | 44 | python3 .ci/scripts/windows/scan_dll.py package/*.exe package/imageformats/*.dll "package/" |
| 45 | python3 .ci/scripts/windows/scan_dll.py package/imageformats/*.dll "package/" | ||
| 46 | 45 | ||
| 47 | # copy FFmpeg libraries | 46 | # copy FFmpeg libraries |
| 48 | EXTERNALS_PATH="$(pwd)/build/externals" | 47 | EXTERNALS_PATH="$(pwd)/build/externals" |
| 49 | FFMPEG_DLL_PATH="$(find ${EXTERNALS_PATH} -maxdepth 1 -type d | grep ffmpeg)/ffmpeg/bin" | 48 | FFMPEG_DLL_PATH="$(find "${EXTERNALS_PATH}" -maxdepth 1 -type d | grep 'ffmpeg-')/bin" |
| 50 | find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' | 49 | find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' |
| 51 | 50 | ||
| 52 | # copy libraries from yuzu.exe path | 51 | # copy libraries from yuzu.exe path |