From 5ec687f373dccbf13e06d26fe5fca4a73370ad54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=9F?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=BE=D0=B2?= Date: Sat, 2 May 2026 03:19:54 +0300 Subject: [PATCH] Clean build directories before CMake --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index d335733..f917016 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,6 +11,7 @@ pipeline { sh ''' cmake -S . -B build/linux -G Ninja -DCMAKE_BUILD_TYPE=Release cmake --build build/linux + archiveArtifacts artifacts: 'build/linux/test_app', fingerprint: true ''' } } @@ -29,6 +30,7 @@ stage('Build Windows') { -DCMAKE_TOOLCHAIN_FILE=C:\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake cmake --build build\\windows + archiveArtifacts artifacts: 'build/windows/test_app.exe', fingerprint: true ''' } }