From be3d7fd7c423507332c2c9a2b27960ffb785c3a9 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Tue, 22 Jul 2025 10:28:23 -0400 Subject: [PATCH] Changes pipeline pool to AmazonLinuxPool Updates the Azure Pipeline configuration to use the 'AmazonLinuxPool' instead of the 'Default' pool. This change likely aims to leverage the Amazon Linux environment for build and test processes, potentially to align with deployment targets or to utilize specific tools or dependencies available in that environment. --- azure-pipelines-automated-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-automated-testing.yml b/azure-pipelines-automated-testing.yml index 34cda2917..a44bb192d 100644 --- a/azure-pipelines-automated-testing.yml +++ b/azure-pipelines-automated-testing.yml @@ -6,7 +6,7 @@ schedules: branches: include: - develop -pool: 'Default' +pool: 'AmazonLinuxPool' variables: # - group: Digital-Infrastructure