Skip to content
Closed
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
2 changes: 1 addition & 1 deletion tools/devops/automation/templates/tests-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ parameters:
statusContext: 'arm64 - Mac Tahoe (26)',
demands: [
"Agent.OS -equals Darwin",
"Agent.OSVersion -equals 26.0",
"Agent.Name -equals Tahoe",
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

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

Using Agent.Name -equals Tahoe is likely too restrictive/incorrect for selecting all macOS Tahoe bots: Agent.Name is the individual ADO agent name (typically unique), and this repo consistently uses the custom capability macOS.Name to select the OS (see Monterey/Ventura/Sonoma/Sequoia entries just above). To match any Tahoe machine regardless of minor OS version, switch this demand to macOS.Name -equals Tahoe (or another dedicated capability meant for OS selection) instead of Agent.Name.

Suggested change
"Agent.Name -equals Tahoe",
"macOS.Name -equals Tahoe",

Copilot uses AI. Check for mistakes.
"macOS.Architecture -equals arm64",
"Agent.HasDevices -equals False",
"Agent.IsPaired -equals False"
Expand Down
Loading