diff --git a/Jenkinsfile b/Jenkinsfile index d357448..4e81be0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,27 +7,27 @@ pipeline { steps { cleanWs() checkout scm +bat ''' + call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat" - 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 -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 - cmake --build build\\windows + if exist dist\\windows rmdir /s /q dist\\windows + mkdir dist\\windows - if exist dist\\windows rmdir /s /q dist\\windows - mkdir dist\\windows + copy build\\windows\\test_app.exe dist\\windows\\test_app.exe - 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 - C:\\vcpkg\\installed\\x64-windows\\tools\\Qt6\\bin\\windeployqt.exe ^ - --release ^ - --no-translations ^ - dist\\windows\\test_app.exe - ''' + "%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 }