From 970daf84db4ec49a50e9928c3454afcdd3bb7530 Mon Sep 17 00:00:00 2001 From: dzaitsev Date: Sat, 3 May 2025 13:31:39 +0300 Subject: [PATCH] updating and testing BuildDependencies Jenkins pipeline file --- build/jenkins/BuildDependencies | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/build/jenkins/BuildDependencies b/build/jenkins/BuildDependencies index 17d2360..baafd3b 100644 --- a/build/jenkins/BuildDependencies +++ b/build/jenkins/BuildDependencies @@ -2,15 +2,17 @@ pipeline { // Ensure this runs on your Windows agent agent { - label 'Win10-BuildMachine' // Specify the agent label type - // Explicitly set the workspace to the AzaionSuite workspace within the label block - // This ensures dependencies are installed in the correct location - // for the Azaion Build pipeline and covers both repos. - // Adjust this path if needed - // Note: The workspace path should typically be relative to the Jenkins agent root, - // or an absolute path that the agent has access to. - // 'C:/Jenkins/workspace/AzaionSuite' is a common pattern. - workspace 'C:/Jenkins/workspace/AzaionSuite' + label { // Specify the agent label type + label 'Win10-BuildMachine' // Your agent label + // Explicitly set the workspace within the label block + // This ensures dependencies are installed in the correct location + // for the Azaion Build pipeline and covers both repos. + // Adjust this path if needed + // Note: The workspace path should typically be relative to the Jenkins agent root, + // or an absolute path that the agent has access to. + // 'C:/Jenkins/workspace/AzaionSuite' is a common pattern. + workspace 'C:/Jenkins/workspace/AzaionSuite' + } } tools { @@ -93,4 +95,4 @@ pipeline { } // Optional: Add always, unstable, etc. blocks if needed } -} \ No newline at end of file +}