updating and testing BuildDependencies Jenkins pipeline file

This commit is contained in:
dzaitsev
2025-05-03 13:31:39 +03:00
parent 756806bdeb
commit 970daf84db
+11 -9
View File
@@ -2,15 +2,17 @@
pipeline { pipeline {
// Ensure this runs on your Windows agent // Ensure this runs on your Windows agent
agent { agent {
label 'Win10-BuildMachine' // Specify the agent label type label { // Specify the agent label type
// Explicitly set the workspace to the AzaionSuite workspace within the label block label 'Win10-BuildMachine' // Your agent label
// This ensures dependencies are installed in the correct location // Explicitly set the workspace within the label block
// for the Azaion Build pipeline and covers both repos. // This ensures dependencies are installed in the correct location
// Adjust this path if needed // for the Azaion Build pipeline and covers both repos.
// Note: The workspace path should typically be relative to the Jenkins agent root, // Adjust this path if needed
// or an absolute path that the agent has access to. // Note: The workspace path should typically be relative to the Jenkins agent root,
// 'C:/Jenkins/workspace/AzaionSuite' is a common pattern. // or an absolute path that the agent has access to.
workspace 'C:/Jenkins/workspace/AzaionSuite' // 'C:/Jenkins/workspace/AzaionSuite' is a common pattern.
workspace 'C:/Jenkins/workspace/AzaionSuite'
}
} }
tools { tools {