clean step in correct order

This commit is contained in:
Marcel Peterkau 2025-06-02 10:43:38 +02:00
parent d08e0cfbb3
commit bb824f0376

12
Jenkinsfile vendored
View File

@ -17,12 +17,6 @@ pipeline {
stages { stages {
stage('🧹 Cleanup') {
steps {
deleteDir()
}
}
stage('🧰 Setup PlatformIO') { stage('🧰 Setup PlatformIO') {
steps { steps {
dir('Software') { dir('Software') {
@ -77,6 +71,12 @@ wifi_ap_password = DummyAP
} }
} }
} }
stage('🧹 Cleanup') {
steps {
deleteDir()
}
}
} }
post { post {