From 8a83488465f101e3ec2620cb1eb2a8c3d7cc1a1c Mon Sep 17 00:00:00 2001 From: Jo Shields Date: Thu, 19 Mar 2020 16:39:37 -0400 Subject: [PATCH] Make "iOS" not part of "all" to avoid some outerloop assumptions (#33811) --- eng/pipelines/common/platform-matrix.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/pipelines/common/platform-matrix.yml b/eng/pipelines/common/platform-matrix.yml index f677102..38a01a7 100644 --- a/eng/pipelines/common/platform-matrix.yml +++ b/eng/pipelines/common/platform-matrix.yml @@ -200,7 +200,7 @@ jobs: # iOS x64 -- ${{ if or(containsValue(parameters.platforms, 'iOS_x64'), eq(parameters.platformGroup, 'all')) }}: +- ${{ if containsValue(parameters.platforms, 'iOS_x64') }}: - template: xplat-setup.yml parameters: jobTemplate: ${{ parameters.jobTemplate }} @@ -220,7 +220,7 @@ jobs: # iOS arm -- ${{ if or(containsValue(parameters.platforms, 'iOS_arm'), eq(parameters.platformGroup, 'all')) }}: +- ${{ if containsValue(parameters.platforms, 'iOS_arm') }}: - template: xplat-setup.yml parameters: jobTemplate: ${{ parameters.jobTemplate }} @@ -240,7 +240,7 @@ jobs: # iOS arm64 -- ${{ if or(containsValue(parameters.platforms, 'iOS_arm64'), eq(parameters.platformGroup, 'all')) }}: +- ${{ if containsValue(parameters.platforms, 'iOS_arm64') }}: - template: xplat-setup.yml parameters: jobTemplate: ${{ parameters.jobTemplate }} -- 2.7.4