Skip to content

Commit 2557cf3

Browse files
authored
Update Workers.Powershell.props runtime filters to include arm64 (#11013)
1 parent 0c098fe commit 2557cf3

File tree

2 files changed

+22
-16
lines changed

2 files changed

+22
-16
lines changed

eng/build/Workers.Powershell.props

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@
88

99
<Target Name="RemovePowershellWorkerRuntimes" BeforeTargets="AssignTargetPaths" Condition="'$(RuntimeIdentifier)' != ''">
1010
<ItemGroup>
11-
<_KeepPowerShellRuntime Include="win;win-x86;win10-x86;win-x64;win10-x64" Condition="$(RuntimeIdentifier.StartsWith(win))" />
12-
<_KeepPowerShellRuntime Include="linux;linux-x64;unix" Condition="$(RuntimeIdentifier.StartsWith(linux))" />
11+
<_KeepPowerShellRuntime Include="win;win-x86;win10-x86;win-x64;win10-x64" Condition="$(RuntimeIdentifier.StartsWith('win')) and !$(RuntimeIdentifier.Contains('arm'))" />
12+
<_KeepPowerShellRuntime Include="win;win-arm;win-arm64" Condition="'$(RuntimeIdentifier)' == 'win-arm64'" />
13+
14+
<_KeepPowerShellRuntime Include="linux;unix;linux-x64" Condition="'$(RuntimeIdentifier)' == 'linux-x64'" />
15+
<_KeepPowerShellRuntime Include="linux;unix;linux-arm;linux-arm64" Condition="'$(RuntimeIdentifier)' == 'linux-arm64'" />
16+
17+
<_KeepPowerShellRuntime Include="osx;unix;osx-x64" Condition="'$(RuntimeIdentifier)' == 'osx-x64'" />
18+
<_KeepPowerShellRuntime Include="osx;unix;osx-arm64" Condition="'$(RuntimeIdentifier)' == 'osx-arm64'" />
1319
</ItemGroup>
1420

1521
<PropertyGroup>

release_notes.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
### Release notes
2-
3-
<!-- Please add your release notes in the following format:
4-
- My change description (#PR)
5-
-->
6-
- Improved memory metrics reporting using CGroup data for Linux consumption (#10968)
7-
- Memory allocation optimizations in `RpcWorkerConfigFactory.AddProviders` (#10959)
8-
9-
- Fixing GrpcWorkerChannel concurrency bug (#10998)
10-
- Avoid circular dependency when resolving LinuxContainerLegionMetricsPublisher. (#10991)
11-
- Add 'unix' to the list of runtimes kept when importing PowerShell worker for Linux builds
12-
- Update PowerShell 7.4 worker to 4.0.4206
13-
- Update Python Worker Version to [4.37.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.37.0)
14-
- Add runtime and process metrics. (#11034)
1+
### Release notes
2+
3+
<!-- Please add your release notes in the following format:
4+
- My change description (#PR)
5+
-->
6+
- Improved memory metrics reporting using CGroup data for Linux consumption (#10968)
7+
- Memory allocation optimizations in `RpcWorkerConfigFactory.AddProviders` (#10959)
8+
- Fixing GrpcWorkerChannel concurrency bug (#10998)
9+
- Avoid circular dependency when resolving LinuxContainerLegionMetricsPublisher. (#10991)
10+
- Add 'unix' to the list of runtimes kept when importing PowerShell worker for Linux builds
11+
- Update PowerShell 7.4 worker to 4.0.4206
12+
- Update Python Worker Version to [4.37.0](https://github.com/Azure/azure-functions-python-worker/releases/tag/4.37.0)
13+
- Add runtime and process metrics. (#11034)
14+
- Add `win-arm64` and `linux-arm64` to the list of PowerShell runtimes; added filter for `osx` RIDs (includes `osx-x64` and `osx-arm64`) (#11013)

0 commit comments

Comments
 (0)