Test Qt Dependencis

This commit is contained in:
2026-05-02 12:55:03 +03:00
parent ca2fedc22e
commit 9a8f498e2b
Vendored
+7 -7
View File
@@ -7,8 +7,7 @@ pipeline {
steps {
cleanWs()
checkout scm
bat '''
bat '''
call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat"
cmake -S . -B build\\windows -G Ninja ^
@@ -23,11 +22,12 @@ pipeline {
copy build\\windows\\test_app.exe dist\\windows\\test_app.exe
C:\\vcpkg\\installed\\x64-windows\\tools\\Qt6\\bin\\windeployqt.exe ^
--release ^
--no-translations ^
dist\\windows\\test_app.exe
'''
for /f "delims=" %%i in ('dir /b /s C:\\vcpkg\\installed\\x64-windows\\tools\\Qt6\\windeployqt.exe') do set WINDEPLOYQT=%%i
"%WINDEPLOYQT%" --release --no-translations dist\\windows\\test_app.exe
xcopy /Y /I C:\\vcpkg\\installed\\x64-windows\\bin\\*.dll dist\\windows\\
'''
archiveArtifacts artifacts: 'dist/windows/**', fingerprint: true
}