Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-13' } ]
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-14-large' } ]
architecture: ['x64']
target_framework: ${{fromJson((needs.variables.outputs.PARALLEL == 'true' && needs.variables.outputs.DOTNET_TARGET_FRAMEWORKS) || '[""]')}}
build_configuration: ${{fromJson(needs.variables.outputs.BUILD_CONFIGURATIONS)}}
Expand All @@ -163,7 +163,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-13' } ]
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-14-large' } ]
architecture: ['x64']
Comment on lines 163 to 167
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge macOS x64 jobs now run as arm64

Changing the matrix image to macos-14 switches these jobs to Apple‑Silicon runners, but the inputs passed to the called workflows still set os: 'macos'. The child workflow (test-unix-dotnet.yml) installs the x64 SDK and selects /Users/runner/.dotnet/x64/dotnet only when inputs.os == 'macos-arm64'. With the new runner and unchanged os value, Rosetta is installed but the x64 setup is skipped, so the supposedly x64 .NET/Mono tests execute with the default arm64 runtime. This removes x64 coverage and can hide x64-only regressions. Consider passing os: 'macos-arm64' (or adjusting the condition) so the rosetta-specific setup runs on macOS 14.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

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

P1 Badge macOS x64 jobs now run as arm64

Changing the matrix image to macos-14 switches these jobs to Apple‑Silicon runners, but the inputs passed to the called workflows still set os: 'macos'. The child workflow (test-unix-dotnet.yml) installs the x64 SDK and selects /Users/runner/.dotnet/x64/dotnet only when inputs.os == 'macos-arm64'. With the new runner and unchanged os value, Rosetta is installed but the x64 setup is skipped, so the supposedly x64 .NET/Mono tests execute with the default arm64 runtime. This removes x64 coverage and can hide x64-only regressions. Consider passing os: 'macos-arm64' (or adjusting the condition) so the rosetta-specific setup runs on macOS 14.

@copilot the macOS intel tests fail and you need to check if the comment from ChatGPT is valid

target_framework: ${{fromJson((needs.variables.outputs.PARALLEL == 'true' && needs.variables.outputs.FRAMEWORK_TARGET_FRAMEWORKS) || '[""]')}}
build_configuration: ${{fromJson(needs.variables.outputs.BUILD_CONFIGURATIONS)}}
Expand All @@ -183,7 +183,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-13' } ]
image: [ { os: 'ubuntu', code: 'ubuntu-22.04' }, { os: 'macos', code: 'macos-14' } ]
architecture: ['arm64']
target_framework: ${{fromJson((needs.variables.outputs.PARALLEL == 'true' && needs.variables.outputs.FRAMEWORK_TARGET_FRAMEWORKS) || '[""]')}}
build_configuration: ${{fromJson(needs.variables.outputs.BUILD_CONFIGURATIONS)}}
Expand Down