Remove 7za.exe (#392)

This commit is contained in:
Logan McNaughton
2023-08-29 15:19:04 -06:00
committed by GitHub
parent 1985475d63
commit 58e7658ab1
4 changed files with 13 additions and 1 deletions
+1
View File
@@ -45,6 +45,7 @@ jobs:
SDL2:p
SDL2_net:p
qt6:p
7zip:p
- name: Run build script
run: msys2 -c 'export SIMPLE64_AUTOUPDATE=1; ./build.sh zip'
+1
View File
@@ -1,6 +1,7 @@
simple64/
discord/
vosk/
7z/
*zip
*.dylib
.DS_Store
+10 -1
View File
@@ -103,6 +103,15 @@ if [[ ! -d "${base_dir}/vosk" ]]; then
fi
if [[ ${UNAME} == *"MINGW64"* ]]; then
if [[ ! -d "${base_dir}/7z" ]]; then
echo "Downloading 7-zip"
mkdir -p "${base_dir}/7z"
cd "${base_dir}/7z"
wget -q https://www.7-zip.org/a/7z2301-extra.7z
7z x 7z2301-extra.7z
rm 7z2301-extra.7z
fi
cd "${install_dir}"
windeployqt-qt6.exe --no-translations simple64-gui.exe
my_os=win64
@@ -135,7 +144,7 @@ if [[ ${UNAME} == *"MINGW64"* ]]; then
cp -v "${MSYSTEM_PREFIX}/bin/libhidapi-0.dll" "${install_dir}"
cp -v "${MSYSTEM_PREFIX}/bin/libcrypto-3-x64.dll" "${install_dir}" # used by Qt at runtime
cp -v "${MSYSTEM_PREFIX}/bin/libssl-3-x64.dll" "${install_dir}" # used by Qt at runtime
cp -v "${base_dir}/7za.exe" "${install_dir}"
cp -v "${base_dir}/7z/x64/7za.exe" "${install_dir}"
cp -v "${base_dir}/discord/lib/x86_64/discord_game_sdk.dll" "${install_dir}"
cp -v "${base_dir}/vosk/libvosk.dll" "${install_dir}/vosk.dll"
else
+1
View File
@@ -12,3 +12,4 @@ rm -rf parallel-rsp/build
rm -rf parallel-rdp-standalone/build
rm -rf discord
rm -rf vosk
rm -rf 7z