mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
updating and testing ImageMatcher pipeline
This commit is contained in:
@@ -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."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user