feat cleanupWs

This commit is contained in:
tqcq 2024-07-19 01:12:51 +08:00 committed by tqcq
parent d96f336088
commit 128fbc4983

10
Jenkinsfile vendored
View File

@ -4,7 +4,17 @@ pipeline {
image 'tqcq/cross'
}
}
options {
skipDefaultCheckout(true)
}
stages {
stage("Checkout") {
cleanWs()
checkout scm
}
stage('Configure') {
steps {
sh 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON'