Files
Testing/Jenkinsfile
T
2026-05-02 13:52:46 +03:00

36 lines
1.1 KiB
Groovy

pipeline {
agent none
stages {
stage('Build Windows Qt') {
agent { label 'windows' }
steps {
deleteDir()
checkout scm
bat '''
call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat"
cmake -S . -B build\\windows -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_TOOLCHAIN_FILE=C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake ^
-DVCPKG_TARGET_TRIPLET=x64-windows
cmake --build build\\windows
if exist dist\\windows rmdir /s /q dist\\windows
mkdir dist\\windows
copy build\\windows\\test_app.exe 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
}
}
}
}