diff --git a/build/jenkins/ImageMatcher b/build/jenkins/ImageMatcher index cbfd08d..9db3c3e 100644 --- a/build/jenkins/ImageMatcher +++ b/build/jenkins/ImageMatcher @@ -30,9 +30,18 @@ pipeline { // Use a dir() step to ensure the build command runs in the shared workspace dir(env.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 bat 'build.cmd' // Replace with the actual build command } + echo "ImageMatcher build command finished." } } }