Skip to content
Snippets Groups Projects
Commit 56af1bda authored by Burhan Akbar's avatar Burhan Akbar
Browse files

Adjusting a bigger change deploys v7...

parent 20a91ba4
No related branches found
No related tags found
No related merge requests found
......@@ -9,20 +9,21 @@ pipeline {
SSH_CRED_ID = "appvm-ssh-cred"
}
// Add options block for workspace cleanup
// Add options block
options {
// Set an overall timeout for the pipeline.
timeout(time: 30, unit: 'MINUTES')
// Clean workspace before checkout
skipDefaultCheckout true // We'll handle checkout manually after cleaning
wipeWorkspace()
// Keep skipDefaultCheckout true because we do manual checkout
skipDefaultCheckout true
}
stages {
// Add a stage for manual checkout after cleaning
stage('Checkout') {
steps {
echo "Wiping workspace completed by options block."
// Add cleanWs() step here to clean before checkout
echo "Cleaning workspace before checkout..."
cleanWs()
echo "Performing manual checkout..."
// Use your actual Git checkout command here if different
// Ensure you specify the correct branch ('ba')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment