From 1dc38dd66643e7a17e3e782a3db99416707eb008 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:03:02 +0300 Subject: [PATCH] Clean build directories before CMake --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 6cd3f48..c671fef 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,6 +6,7 @@ pipeline { agent { label 'linux' } steps { cleanWs() + checkout scm sh ''' cmake -S . -B build/linux -G Ninja -DCMAKE_BUILD_TYPE=Release @@ -18,6 +19,7 @@ pipeline { agent { label 'windows' } steps { cleanWs() + checkout scm bat ''' echo Windows agent works