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
13 changes: 13 additions & 0 deletions eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,20 @@ jobs:

# Android x64
- ${{ if in(parameters.platform, 'android_x64') }}:
- Ubuntu.2204.Amd64.Android.21.Open
- Ubuntu.2204.Amd64.Android.22.Open
- Ubuntu.2204.Amd64.Android.23.Open
- Ubuntu.2204.Amd64.Android.24.Open
- Ubuntu.2204.Amd64.Android.25.Open
- Ubuntu.2204.Amd64.Android.26.Open
- Ubuntu.2204.Amd64.Android.27.Open
- Ubuntu.2204.Amd64.Android.28.Open
- Ubuntu.2204.Amd64.Android.29.Open
- Ubuntu.2204.Amd64.Android.30.Open
- Ubuntu.2204.Amd64.Android.31.Open
- Ubuntu.2204.Amd64.Android.32.Open
- Ubuntu.2204.Amd64.Android.33.Open
- Ubuntu.2204.Amd64.Android.34.Open

# Browser wasm
- ${{ if eq(parameters.platform, 'browser_wasm') }}:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
nameSuffix: AllSubsets_Mono_RuntimeTests
runtimeVariant: minijit
buildArgs: -s mono+libs -c $(_BuildConfig)
timeoutInMinutes: 240
timeoutInMinutes: 1800
# extra steps, run tests
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
nameSuffix: AllSubsets_Mono_RuntimeTests_Interp
runtimeVariant: monointerpreter
buildArgs: -s mono+libs -c $(_BuildConfig)
timeoutInMinutes: 240
timeoutInMinutes: 1800
# extra steps, run tests
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
nameSuffix: AllSubsets_Mono
isExtraPlatforms: ${{ parameters.isExtraPlatformsBuild }}
buildArgs: -s mono+libs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true $(_runSmokeTestsOnlyArg)
timeoutInMinutes: 240
timeoutInMinutes: 1800
# extra steps, run tests
postBuildSteps:
- template: /eng/pipelines/libraries/helix.yml
Expand Down
15 changes: 15 additions & 0 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,21 @@ jobs:
- Ubuntu.2204.Amd64.Android.29.Open
- ${{ if in(parameters.platform, 'android_arm', 'android_arm64', 'linux_bionic_arm', 'linux_bionic_arm64') }}:
- Windows.11.Amd64.Android.Open
- ${{ if in(parameters.platform, 'Android_x64') }}: # there's no x86 emulator image anymore since Android 31
- Ubuntu.2204.Amd64.Android.21.Open
- Ubuntu.2204.Amd64.Android.22.Open
- Ubuntu.2204.Amd64.Android.23.Open
- Ubuntu.2204.Amd64.Android.24.Open
- Ubuntu.2204.Amd64.Android.25.Open
- Ubuntu.2204.Amd64.Android.26.Open
- Ubuntu.2204.Amd64.Android.27.Open
- Ubuntu.2204.Amd64.Android.28.Open
- Ubuntu.2204.Amd64.Android.29.Open
- Ubuntu.2204.Amd64.Android.30.Open
- Ubuntu.2204.Amd64.Android.31.Open
- Ubuntu.2204.Amd64.Android.32.Open
- Ubuntu.2204.Amd64.Android.33.Open
- Ubuntu.2204.Amd64.Android.34.Open

# iOS Simulator/Mac Catalyst arm64
- ${{ if in(parameters.platform, 'maccatalyst_arm64', 'iossimulator_arm64') }}:
Expand Down
17 changes: 16 additions & 1 deletion eng/pipelines/runtime-androidemulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,22 @@
# point the pipeline in azdo UI to this, and thus avoid any scheduled
# triggers

trigger: none
trigger:
branches:
include:
- release/*.*
paths:
include:
- '*'

pr:
branches:
include:
- main
- release/*.*
paths:
include:
- '*'

variables:
- template: /eng/pipelines/common/variables.yml
Expand Down
Loading