updating and testing ImageMatcher pipeline

This commit is contained in:
dzaitsev
2025-05-03 14:15:59 +03:00
parent 4c12a3244f
commit 0dbf25be65
+2 -6
View File
@@ -9,7 +9,7 @@ pipeline {
tools {
// Define any tools needed specifically for building ImageMatcher
git 'Default' // Git is NOT needed for checkout in this pipeline
// git 'Default' // Git is NOT needed for checkout in this pipeline
// dotnetsdk 'dotnet-sdk' // If ImageMatcher is a .NET project
}
@@ -24,9 +24,7 @@ pipeline {
}
stages {
// Use a dir() step to ensure all subsequent steps run in the shared workspace
stage('Run in Shared Workspace') {
steps {
// Use a dir() step to ensure all subsequent stages/steps run in the shared workspace
dir(env.SHARED_WORKSPACE) {
echo "Changing directory to shared workspace: ${env.SHARED_WORKSPACE}"
@@ -55,8 +53,6 @@ pipeline {
// }
} // end dir(env.SHARED_WORKSPACE)
}
}
}
post {
success {