updating and testing ImageMatcher pipeline

This commit is contained in:
dzaitsev
2025-05-03 14:24:48 +03:00
parent cc86ba795b
commit 0153634166
+9
View File
@@ -30,9 +30,18 @@ pipeline {
// Use a dir() step to ensure the build command runs in the shared workspace // Use a dir() step to ensure the build command runs in the shared workspace
dir(env.SHARED_WORKSPACE) { dir(env.SHARED_WORKSPACE) {
// The code is expected to be in the 'gps-denied' subdirectory relative to the shared workspace // The code is expected to be in the 'gps-denied' subdirectory relative to the shared workspace
echo "Running ImageMatcher dependency installation script..."
// Run the install_dependencies_win script located in the gps-denied subdirectory
// Use bat as it's a Windows script
bat 'gps-denied\\install_dependencies_win.cmd' // **Added step to run dependency script**
echo "ImageMatcher dependency installation script finished."
echo "Running ImageMatcher build command..."
dir('gps-denied\\image-matcher') { // Change directory to the ImageMatcher build location relative to SHARED_WORKSPACE dir('gps-denied\\image-matcher') { // Change directory to the ImageMatcher build location relative to SHARED_WORKSPACE
bat 'build.cmd' // Replace with the actual build command bat 'build.cmd' // Replace with the actual build command
} }
echo "ImageMatcher build command finished."
} }
} }
} }