Skip to content
Merged
Changes from 1 commit
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
14 changes: 9 additions & 5 deletions eng/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,13 @@ parameters:
- ImageOverride -equals ACES_VM_SharedPool_Tahoe
label: macOS

- name: AndroidPoolLinux
type: object
default:
name: MAUI-DNCENG
demands:
- ImageOverride -equals 1ESPT-Ubuntu22.04


# Condition for MacOSPool comparison lanes (non-ARM64)
# Runs on: (non-PR on main/net*.0/release/*/inflight/*) OR (PR targeting net*.0/release/*/inflight/*)
Expand Down Expand Up @@ -277,12 +284,9 @@ stages:
# TODO: macOSTemplates and AOT template categories
- name: mac_runandroid_tests

Copilot AI Feb 11, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The stage name mac_runandroid_tests is now misleading since it runs on a Linux pool. Consider renaming it to something platform-neutral (e.g., runandroid_tests) or explicitly Linux-based (e.g., linux_runandroid_tests) to avoid confusion when diagnosing CI failures.

Suggested change
- name: mac_runandroid_tests
- name: linux_runandroid_tests

Copilot uses AI. Check for mistakes.
${{ if eq(variables['Build.DefinitionName'], 'maui-pr') }}:
pool:
name: AcesShared
demands:
- ImageOverride -equals ACES_arm64_Sequoia_Xcode
pool: ${{ parameters.AndroidPoolLinux }}
${{ else }}:
pool: ${{ parameters.MacOSPool.internal }}
pool: ${{ parameters.AndroidPoolLinux }}
Comment thread
rmarinho marked this conversation as resolved.
timeout: 240
testCategory: RunOnAndroid

Expand Down
Loading