Clean build directories before CMake

This commit is contained in:
2026-05-02 03:03:02 +03:00
parent 476223ad98
commit 1dc38dd666
Vendored
+2
View File
@@ -6,6 +6,7 @@ pipeline {
agent { label 'linux' } agent { label 'linux' }
steps { steps {
cleanWs() cleanWs()
checkout scm
sh ''' sh '''
cmake -S . -B build/linux -G Ninja -DCMAKE_BUILD_TYPE=Release cmake -S . -B build/linux -G Ninja -DCMAKE_BUILD_TYPE=Release
@@ -18,6 +19,7 @@ pipeline {
agent { label 'windows' } agent { label 'windows' }
steps { steps {
cleanWs() cleanWs()
checkout scm
bat ''' bat '''
echo Windows agent works echo Windows agent works