Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,11 @@ jobs:

# iOS Simulator/Mac Catalyst arm64
- ${{ if in(parameters.platform, 'iossimulator_arm64', 'tvossimulator_arm64', 'maccatalyst_arm64') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- OSX.15.Arm64.Open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- OSX.15.Arm64
- $(helix_macos_arm64)
Comment thread
matouskozak marked this conversation as resolved.

# iOS/tvOS Simulator x64 & MacCatalyst x64
- ${{ if in(parameters.platform, 'iossimulator_x64', 'tvossimulator_x64', 'maccatalyst_x64') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- OSX.15.Amd64.Open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- OSX.15.Amd64
- $(helix_macos_x64)

# Android arm64
- ${{ if in(parameters.platform, 'android_arm64') }}:
Expand All @@ -69,17 +63,11 @@ jobs:

# iOS devices
- ${{ if in(parameters.platform, 'ios_arm64') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- osx.15.amd64.iphone.open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- osx.15.amd64.iphone
- $(helix_macos_ios_device_latest)
Comment thread
matouskozak marked this conversation as resolved.

# tvOS devices
- ${{ if in(parameters.platform, 'tvos_arm64') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- osx.15.amd64.appletv.open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- osx.15.amd64.appletv
- $(helix_macos_tvos_device_latest)
Comment thread
matouskozak marked this conversation as resolved.
Comment thread
matouskozak marked this conversation as resolved.

# Linux arm
- ${{ if eq(parameters.platform, 'linux_arm') }}:
Expand Down
8 changes: 4 additions & 4 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,19 @@ jobs:

# iOS Simulator/Mac Catalyst arm64
- ${{ if in(parameters.platform, 'iossimulator_arm64', 'tvossimulator_arm64', 'maccatalyst_arm64') }}:
- OSX.15.Arm64.Open
- $(helix_macos_arm64)
Comment thread
matouskozak marked this conversation as resolved.

# iOS/tvOS Simulator x64 & MacCatalyst x64
- ${{ if in(parameters.platform, 'iossimulator_x64', 'tvossimulator_x64', 'maccatalyst_x64') }}:
- OSX.15.Amd64.Open
- $(helix_macos_x64)

# iOS devices
- ${{ if in(parameters.platform, 'ios_arm64') }}:
- osx.15.amd64.iphone.open
- $(helix_macos_ios_device_latest)
Comment thread
matouskozak marked this conversation as resolved.

# tvOS devices
- ${{ if in(parameters.platform, 'tvos_arm64') }}:
- osx.15.amd64.appletv.open
- $(helix_macos_tvos_device_latest)
Comment thread
matouskozak marked this conversation as resolved.
Comment thread
matouskozak marked this conversation as resolved.

# windows x64
- ${{ if eq(parameters.platform, 'windows_x64') }}:
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/runtime-ioslike.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ trigger: none

variables:
- template: /eng/pipelines/common/variables.yml
- template: /eng/pipelines/helix-platforms.yml

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/runtime-ioslikesimulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ trigger: none

variables:
- template: /eng/pipelines/common/variables.yml
- template: /eng/pipelines/helix-platforms.yml

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/runtime-maccatalyst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ trigger: none

variables:
- template: /eng/pipelines/common/variables.yml
- template: /eng/pipelines/helix-platforms.yml

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
Expand Down
Loading