jobs/buildTarget: added post step cleaning repository

the post step cleans the residuals from the update of the source
revisions.

Signed-off-by: Marc Mattmüller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmüller 2023-08-29 08:56:32 +02:00 committed by Marc Mattmüller
parent 22b6e0adc4
commit 0a2a6685ea
1 changed files with 8 additions and 0 deletions

View File

@ -85,6 +85,14 @@ pipeline {
}
}
}
post {
always {
script {
common.cleanupRepository("${env.YOCTO_REPO_DIR}")
}
}
}
}
stage('Update SSTATE-CACHE MIRROR') {