Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/9.0][no-merge][testing][Android] Run runtime and libraries tests on different Android API version #106951

Draft
wants to merge 2 commits into
base: release/9.0
Choose a base branch
from
Draft
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
11 changes: 11 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,18 @@ 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

# 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: 180
timeoutInMinutes: 1800
# extra steps, run tests
postBuildSteps:
- template: /eng/pipelines/libraries/helix.yml
Expand Down
12 changes: 12 additions & 0 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,19 @@ jobs:

# Android
- ${{ if in(parameters.platform, 'android_x86', 'android_x64', 'linux_bionic_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
- ${{ if in(parameters.platform, 'Android_x64') }}: # there's no x86 emulator image anymore since Android 31
- Ubuntu.2204.Amd64.Android.31.Open
- Ubuntu.2204.Amd64.Android.32.Open
- ${{ if in(parameters.platform, 'android_arm', 'android_arm64', 'linux_bionic_arm', 'linux_bionic_arm64') }}:
- Windows.11.Amd64.Android.Open

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