Skip to content
Open
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: 2 additions & 0 deletions .pipelines/foundry-local-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ extends:
- job: flc_osx_arm64
displayName: 'FLC osx-arm64'
pool:
type: linux
isCustom: true
Comment on lines +194 to +195
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

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

pool.type: linux conflicts with vmImage: 'macOS-14' / os: macOS and can cause this job to be scheduled incorrectly or fail YAML validation, preventing the macOS build from running. Use a macOS-compatible pool configuration (e.g., remove type/isCustom here if this is meant to run on Microsoft-hosted macOS, or set type to the correct value for your macOS pool).

Suggested change
type: linux
isCustom: true

Copilot uses AI. Check for mistakes.
name: Azure Pipelines
vmImage: 'macOS-14'
os: macOS
Expand Down
Loading