From 4f103199a2d20bdd36a41ad7854bf9cdbf9bb521 Mon Sep 17 00:00:00 2001 From: seraphima Date: Mon, 15 Jan 2024 17:02:18 +0100 Subject: [PATCH] pool --- .pipelines/ci/templates/run-ui-tests-ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.pipelines/ci/templates/run-ui-tests-ci.yml b/.pipelines/ci/templates/run-ui-tests-ci.yml index d3be4a07c1..bf4468a1c1 100644 --- a/.pipelines/ci/templates/run-ui-tests-ci.yml +++ b/.pipelines/ci/templates/run-ui-tests-ci.yml @@ -6,11 +6,16 @@ jobs: - job: UITest displayName: UI Test ${{ parameters.platform }} ${{ parameters.configuration }} pool: - demands: ImageOverride -equals SHINE-VS17-Latest ${{ if eq(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: - name: SHINE-OSS-L + ${{ if ne(parameters.platform, 'ARM64') }}: + name: SHINE-OSS-Testing-x64 + ${{ else }}: + name: SHINE-OSS-Testing-arm64 ${{ if ne(variables['System.CollectionUri'], 'https://dev.azure.com/ms/') }}: - name: SHINE-INT-L + ${{ if ne(parameters.platform, 'ARM64') }}: + name: SHINE-INT-Testing-x64 + ${{ else }}: + name: SHINE-INT-Testing-arm64 steps: - checkout: none