mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
Remove hcpython3.dll check from Windows build workflow
This commit is contained in:
committed by
GitHub
parent
15eae4f606
commit
c55b46e67f
12
.github/workflows/windows-build.yml
vendored
12
.github/workflows/windows-build.yml
vendored
@@ -218,8 +218,7 @@ jobs:
|
|||||||
if not exist "%BUILD_DIR%" if /I "${{ matrix.platform }}"=="win32" set "BUILD_DIR=..\zoitechat-build\Win32"
|
if not exist "%BUILD_DIR%" if /I "${{ matrix.platform }}"=="win32" set "BUILD_DIR=..\zoitechat-build\Win32"
|
||||||
if not exist "%BUILD_DIR%" if /I "${{ matrix.platform }}"=="win32" set "BUILD_DIR=..\zoitechat-build\WIN32"
|
if not exist "%BUILD_DIR%" if /I "${{ matrix.platform }}"=="win32" set "BUILD_DIR=..\zoitechat-build\WIN32"
|
||||||
set "PLUGIN_DIR=%BUILD_DIR%\rel\plugins"
|
set "PLUGIN_DIR=%BUILD_DIR%\rel\plugins"
|
||||||
for %%F in (hcchecksum.dll hcexec.dll hcfishlim.dll hcsysinfo.dll hcupd.dll hcwinamp.dll hcpython3.dll hclua.dll) do (
|
for %%F in (hcchecksum.dll hcexec.dll hcfishlim.dll hcsysinfo.dll hcupd.dll hcwinamp.dll hclua.dll) do ( if not exist "%PLUGIN_DIR%\%%F" (
|
||||||
if not exist "%PLUGIN_DIR%\%%F" (
|
|
||||||
if /I "%%F"=="hclua.dll" (
|
if /I "%%F"=="hclua.dll" (
|
||||||
echo Missing expected plugin: %PLUGIN_DIR%\%%F
|
echo Missing expected plugin: %PLUGIN_DIR%\%%F
|
||||||
echo hclua.dll is built from Lua/LuaJIT prerequisites under %LUA_PREREQ_ROOT%.
|
echo hclua.dll is built from Lua/LuaJIT prerequisites under %LUA_PREREQ_ROOT%.
|
||||||
@@ -231,6 +230,15 @@ jobs:
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if exist "%PYTHON_DIR%\python.exe" if exist "%PYTHON_DIR%\libs\python314.lib" if exist "%PYTHON_DIR%\Lib\site-packages\cffi" (
|
||||||
|
if not exist "%PLUGIN_DIR%\hcpython3.dll" (
|
||||||
|
echo Missing expected plugin: %PLUGIN_DIR%\hcpython3.dll
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
echo Python plugin prerequisites not found for ${{ matrix.platform }}; skipping hcpython3.dll verification.
|
||||||
|
)
|
||||||
|
|
||||||
set "PERL_DIR=C:\gtk-build\perl-5.20\${{ matrix.platform }}"
|
set "PERL_DIR=C:\gtk-build\perl-5.20\${{ matrix.platform }}"
|
||||||
if exist "%PERL_DIR%\bin\perl.exe" if exist "%PERL_DIR%\bin\perl520.dll" if exist "C:\gtk-build\gendef\gendef.exe" (
|
if exist "%PERL_DIR%\bin\perl.exe" if exist "%PERL_DIR%\bin\perl520.dll" if exist "C:\gtk-build\gendef\gendef.exe" (
|
||||||
if not exist "%PLUGIN_DIR%\hcperl.dll" (
|
if not exist "%PLUGIN_DIR%\hcperl.dll" (
|
||||||
|
|||||||
Reference in New Issue
Block a user