[00:00:00]* Starting ...
[00:00:00]* Using custom arguments: ''
[00:00:00]* Checking for available runners
[00:00:00]* Signaled an available runner: NasJitDiff
[00:00:00]* Initial remote runner contact
[00:00:00] CustomArguments=
[00:00:00] ProcessorCount=32
[00:00:00] CurrentDirectory=/runner
[00:00:00] FrameworkDescription=.NET 8.0.25
[00:00:00] RuntimeIdentifier=ubuntu.24.04-x64
[00:00:00] BaseRepo=dotnet/runtime
[00:00:00] BaseBranch=main
[00:00:00] PrRepo=EgorBo/runtime-1
[00:00:00] PrBranch=fold-is-cast-patterns
[00:00:00] Using runtime setup script:
set -e

cd runtime
git switch main
git pull origin

git log -1
chmod 777 build.sh
git config --global user.email build@build.foo
git config --global user.name build



git branch -D pr
git switch -c pr
git remote remove combineWith1

git remote add combineWith1 https://github.com/EgorBo/runtime-1
git fetch combineWith1 fold-is-cast-patterns
git log combineWith1/fold-is-cast-patterns -1
git merge --no-edit combineWith1/fold-is-cast-patterns
git log -1


git switch main


[00:00:00] [Setup zip & wget] Running 'apt-get install -y zip wget ninja-build'
[00:00:00] [Setup runtime] Running 'bash -x setup-runtime.sh'
[00:00:00] [Setup runtime] + set -e
[00:00:00] [Setup runtime] + cd runtime
[00:00:00] [Setup runtime] + git switch main
[00:00:01] [Setup runtime] Already on 'main'
[00:00:01] [Setup runtime] Your branch is up to date with 'origin/main'.
[00:00:01] [Setup runtime] + git pull origin
[00:00:01] First hardware info: CpuCoresAvailable=32 MemoryAvailableGB=30.458023071289062
[00:00:01] [Setup zip & wget] Reading package lists...
[00:00:01] [Setup zip & wget] Building dependency tree...
[00:00:01] [Setup zip & wget] Reading state information...
[00:00:01] [Setup zip & wget] zip is already the newest version (3.0-13ubuntu0.2).
[00:00:01] [Setup zip & wget] wget is already the newest version (1.21.4-1ubuntu4.1).
[00:00:01] [Setup zip & wget] ninja-build is already the newest version (1.11.1-2).
[00:00:01] [Setup zip & wget] 0 upgraded, 0 newly installed, 0 to remove and 50 not upgraded.
[00:00:02] [Setup runtime] Already up to date.
[00:00:02] [Setup runtime] + git log -1
[00:00:02] [Setup runtime] commit 651c190010ca653681e336b6549a126c6d78a7cb
[00:00:02] [Setup runtime] Author: Egor Bogatov <egorbo@gmail.com>
[00:00:02] [Setup runtime] Date:   Fri Jul 3 18:22:20 2026 +0200
[00:00:02] [Setup runtime] 
[00:00:02] [Setup runtime]     More cleanups in rangecheck/assertionprop (#129325)
[00:00:02] [Setup runtime]     
[00:00:02] [Setup runtime]     * Remove `GTF_CHK_INDEX_INBND` and unconditionally always remove
[00:00:02] [Setup runtime]     `GT_BOUNDS_CHECK` in assertprop when we can
[00:00:02] [Setup runtime]     * Remove `FEATURE_ENABLE_NO_RANGE_CHECKS` and `DOTNET_JitNoRngChks`,
[00:00:02] [Setup runtime]     these were never enabled by default and I don't think they have any
[00:00:02] [Setup runtime]     value.
[00:00:02] [Setup runtime]     * Correctness improvement: we no longer use this [potential
[00:00:02] [Setup runtime]     bug](https://github.com/dotnet/runtime/blob/d71e0a994980fc47a1efb4ce2c207947e7efedca/src/coreclr/jit/optimizer.cpp#L5545-L5553)
[00:00:02] [Setup runtime]     and extract all side-effects.
[00:00:02] [Setup runtime]     
[00:00:02] [Setup runtime]     ---------
[00:00:02] [Setup runtime]     
[00:00:02] [Setup runtime]     Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
[00:00:02] [Setup runtime] + chmod 777 build.sh
[00:00:02] [Setup runtime] + git config --global user.email build@build.foo
[00:00:02] [Setup runtime] + git config --global user.name build
[00:00:02] [Setup runtime] + git branch -D pr
[00:00:02] [Setup runtime] Deleted branch pr (was 651c190010c).
[00:00:02] [Setup runtime] + git switch -c pr
[00:00:02] [Setup runtime] Switched to a new branch 'pr'
[00:00:02] [Setup runtime] + git remote remove combineWith1
[00:00:02] [Setup runtime] + git remote add combineWith1 https://github.com/EgorBo/runtime-1
[00:00:02] [Setup runtime] + git fetch combineWith1 fold-is-cast-patterns
[00:00:03] [Setup runtime] From https://github.com/EgorBo/runtime-1
[00:00:03] [Setup runtime]  * branch                    fold-is-cast-patterns -> FETCH_HEAD
[00:00:03] [Setup runtime]  * [new branch]              fold-is-cast-patterns -> combineWith1/fold-is-cast-patterns
[00:00:03] [Setup runtime] + git log combineWith1/fold-is-cast-patterns -1
[00:00:03] [Setup runtime] commit a67c37b118deb65cc87ecfa48965f733e0ef5ebb
[00:00:03] [Setup runtime] Author: EgorBo <egorbo@users.noreply.github.com>
[00:00:03] [Setup runtime] Date:   Fri Jul 3 18:41:16 2026 +0200
[00:00:03] [Setup runtime] 
[00:00:03] [Setup runtime]     Use declaration patterns instead of is-type + explicit cast in BCL
[00:00:03] [Setup runtime]     
[00:00:03] [Setup runtime]     Fold legacy pattern-matching idioms in shipped BCL source into modern C#
[00:00:03] [Setup runtime]     pattern matching:
[00:00:03] [Setup runtime]     
[00:00:03] [Setup runtime]     - if (obj is Foo) { ... ((Foo)obj) ... }  =>  if (obj is Foo foo) { ... foo ... }
[00:00:03] [Setup runtime]     - if (!(obj is Foo)) { return; } ... ((Foo)obj)  =>  if (obj is not Foo foo) { return; } ... foo
[00:00:03] [Setup runtime]     - !(x is T)  =>  x is not T
[00:00:03] [Setup runtime]     
[00:00:03] [Setup runtime]     Scope: src/libraries/*/src, src/libraries/Common/src, and
[00:00:03] [Setup runtime]     src/coreclr/System.Private.CoreLib/src (tests, tools, mono, gen and ref
[00:00:03] [Setup runtime]     excluded). Behavior-preserving syntactic transformation.
[00:00:03] [Setup runtime]     
[00:00:03] [Setup runtime]     Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
[00:00:03] [Setup runtime] + git merge --no-edit combineWith1/fold-is-cast-patterns
[00:00:03] [Setup runtime] Merge made by the 'ort' strategy.
[00:00:03] [Setup runtime]  .../System/Reflection/Emit/DynamicILGenerator.cs   |  12 +-
[00:00:03] [Setup runtime]  .../src/System/Reflection/Emit/SignatureHelper.cs  |   4 +-
[00:00:03] [Setup runtime]  .../Interop/Windows/SspiCli/SecuritySafeHandles.cs |   4 +-
[00:00:03] [Setup runtime]  .../Cryptography/Pkcs/Pkcs9AttributeObject.cs      |   2 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/RsaPaddingProcessor.cs   |   2 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/RuntimeBinder.cs          |   2 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/RuntimeBinderExtensions.cs       |   6 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/Binding/Better.cs      |   2 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/Conversion.cs   |   6 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/Conversions.cs  |   2 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/ExplicitConversion.cs  |   4 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/ExpressionBinder.cs    |  10 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/GroupToArgsBinder.cs   |   4 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/ImplicitConversion.cs  |   4 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/MemberLookup.cs |  12 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/MethodIterator.cs      |   2 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/MethodTypeInferrer.cs  |   2 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/Nullable.cs     |   4 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/Operators.cs    |  14 +-
[00:00:03] [Setup runtime]  .../Semantics/Symbols/SymbolLoader.cs              |   4 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/Tree/EXPR.cs    |   2 +-
[00:00:03] [Setup runtime]  .../CSharp/RuntimeBinder/Semantics/TypeBind.cs     |   2 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/Types/TypeManager.cs   |   8 +-
[00:00:03] [Setup runtime]  .../RuntimeBinder/Semantics/Types/TypeTable.cs     |   4 +-
[00:00:03] [Setup runtime]  .../Microsoft/CSharp/RuntimeBinder/SymbolTable.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/Microsoft/CSharp/CSharpCodeGenerator.cs    | 290 ++++++++++-----------
[00:00:03] [Setup runtime]  .../src/Microsoft/VisualBasic/VBCodeGenerator.cs   |  40 +--
[00:00:03] [Setup runtime]  .../src/System/CodeDom/Compiler/CodeGenerator.cs   | 274 +++++++++----------
[00:00:03] [Setup runtime]  .../src/System/CodeDom/Compiler/CodeValidator.cs   | 204 +++++++--------
[00:00:03] [Setup runtime]  .../System/Collections/Immutable/ImmutableArray.cs |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Collections/Generic/SortedList.cs   |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Collections/Generic/SortedSet.cs    |   2 +-
[00:00:03] [Setup runtime]  .../Registration/RegistrationBuilder.cs            |  18 +-
[00:00:03] [Setup runtime]  .../ComponentModel/ComponentResourceManager.cs     |   4 +-
[00:00:03] [Setup runtime]  .../Design/Serialization/InstanceDescriptor.cs     |  16 +-
[00:00:03] [Setup runtime]  .../ComponentModel/Design/ServiceContainer.cs      |   6 +-
[00:00:03] [Setup runtime]  .../src/System/ComponentModel/EnumConverter.cs     |   8 +-
[00:00:03] [Setup runtime]  .../System/ComponentModel/InheritanceAttribute.cs  |   4 +-
[00:00:03] [Setup runtime]  .../PasswordPropertyTextAttribute.cs               |   4 +-
[00:00:03] [Setup runtime]  .../ComponentModel/PropertyDescriptorCollection.cs |  24 +-
[00:00:03] [Setup runtime]  .../src/System/ComponentModel/StringConverter.cs   |   4 +-
[00:00:03] [Setup runtime]  .../src/System/ComponentModel/TypeDescriptor.cs    |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Drawing/PointConverter.cs           |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Drawing/RectangleConverter.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Drawing/SizeConverter.cs            |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Drawing/SizeFConverter.cs           |   2 +-
[00:00:03] [Setup runtime]  .../Composition/Convention/ConventionBuilder.cs    |   2 +-
[00:00:03] [Setup runtime]  .../Hosting/Core/CompositionContract.cs            |   6 +-
[00:00:03] [Setup runtime]  .../TypedParts/Util/DirectAttributeContext.cs      |   2 +-
[00:00:03] [Setup runtime]  .../Configuration/ApplicationSettingsBase.cs       |  24 +-
[00:00:03] [Setup runtime]  .../System/Configuration/ConfigurationElement.cs   |  10 +-
[00:00:03] [Setup runtime]  .../System/Configuration/ConfigurationManager.cs   |   4 +-
[00:00:03] [Setup runtime]  .../System/Configuration/ConfigurationProperty.cs  |  20 +-
[00:00:03] [Setup runtime]  .../System/Configuration/ConfigurationValues.cs    |   4 +-
[00:00:03] [Setup runtime]  .../Configuration/LocalFileSettingsProvider.cs     |   2 +-
[00:00:03] [Setup runtime]  .../ProtectedConfigurationProviderCollection.cs    |   2 +-
[00:00:03] [Setup runtime]  .../System/Configuration/SettingsPropertyValue.cs  |   8 +-
[00:00:03] [Setup runtime]  .../SettingsPropertyValueCollection.cs             |   4 +-
[00:00:03] [Setup runtime]  .../Configuration/SettingsProviderCollection.cs    |   2 +-
[00:00:03] [Setup runtime]  .../System/Configuration/SubclassTypeValidator.cs  |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Configuration/TypeNameConverter.cs  |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Common/ObjectStorage.cs        |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Common/SQLConvert.cs           |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Data/ConstraintCollection.cs        |  16 +-
[00:00:03] [Setup runtime]  .../src/System/Data/ConstraintConverter.cs         |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Data/DataColumn.cs                  |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.Common/src/System/Data/DataSet.cs  |  20 +-
[00:00:03] [Setup runtime]  .../src/System/Data/DataTable.cs                   |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Filter/BinaryNode.cs           |  36 +--
[00:00:03] [Setup runtime]  .../src/System/Data/Filter/DataExpression.cs       |  12 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Filter/UnaryNode.cs            |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Data/ForeignKeyConstraint.cs        |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.Common/src/System/Data/Select.cs   |  12 +-
[00:00:03] [Setup runtime]  .../src/System/Data/UniqueConstraint.cs            |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Data/XDRSchema.cs                   |  10 +-
[00:00:03] [Setup runtime]  .../src/System/Data/XMLSchema.cs                   | 120 ++++-----
[00:00:03] [Setup runtime]  .../src/System/Data/XmlDataLoader.cs               |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.Common/src/System/Data/xmlsaver.cs |  22 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XmlDataDocument.cs              |  12 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Odbc/OdbcParameter.cs          |  52 ++--
[00:00:03] [Setup runtime]  .../src/System/Data/Odbc/OdbcParameterHelper.cs    |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Data/Odbc/OdbcUtils.cs              |   6 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/ColumnBinding.cs         |  36 +--
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/DbParameterHelper.cs     |   8 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbCommandBuilder.cs   |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbConnection.cs       |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbConnectionString.cs |  14 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbDataAdapter.cs      |  12 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbDataReader.cs       |   4 +-
[00:00:03] [Setup runtime]  .../System.Data.OleDb/src/OleDbParameter.cs        |   2 +-
[00:00:03] [Setup runtime]  .../Diagnostics/CounterCreationDataCollection.cs   |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Diagnostics/ProcessStartInfo.cs     |   2 +-
[00:00:03] [Setup runtime]  .../System/Diagnostics/SymbolStore/SymbolToken.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Diagnostics/SwitchAttribute.cs      |   2 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADAMStoreCtx.cs           |   4 +-
[00:00:03] [Setup runtime]  .../AD/ADDNConstraintLinkedAttrSet.cs              |   8 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADDNLinkedAttrSet.cs      |   8 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADStoreCtx.cs             |   6 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADStoreCtx_LoadStore.cs   |   8 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADStoreCtx_Query.cs       |   4 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/ADStoreKey.cs             |   4 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/SDSCache.cs               |   4 +-
[00:00:03] [Setup runtime]  .../AccountManagement/AD/SDSUtils.cs               |  24 +-
[00:00:03] [Setup runtime]  .../AccountManagement/Principal.cs                 |  22 +-
[00:00:03] [Setup runtime]  .../AccountManagement/SAM/SAMMembersSet.cs         |   2 +-
[00:00:03] [Setup runtime]  .../AccountManagement/SAM/SAMStoreCtx.cs           |   6 +-
[00:00:03] [Setup runtime]  .../AccountManagement/SAM/SAMStoreKey.cs           |   4 +-
[00:00:03] [Setup runtime]  .../AccountManagement/StoreCtx.cs                  |  24 +-
[00:00:03] [Setup runtime]  .../Protocols/common/BerConverter.cs               |  14 +-
[00:00:03] [Setup runtime]  .../Protocols/common/DirectoryAttribute.cs         |  12 +-
[00:00:03] [Setup runtime]  .../Protocols/common/DirectoryControl.cs           |   2 +-
[00:00:03] [Setup runtime]  .../Protocols/common/DirectoryRequest.cs           |   2 +-
[00:00:03] [Setup runtime]  .../Protocols/ldap/LdapConnection.cs               |  46 ++--
[00:00:03] [Setup runtime]  .../ActiveDirectory/ActiveDirectorySchemaClass.cs  |  16 +-
[00:00:03] [Setup runtime]  .../ActiveDirectorySchemaClassCollection.cs        |   6 +-
[00:00:03] [Setup runtime]  .../ActiveDirectorySchemaPropertyCollection.cs     |   6 +-
[00:00:03] [Setup runtime]  .../ActiveDirectorySiteCollection.cs               |   6 +-
[00:00:03] [Setup runtime]  .../ActiveDirectorySiteLinkCollection.cs           |   6 +-
[00:00:03] [Setup runtime]  .../ActiveDirectorySubnetCollection.cs             |   6 +-
[00:00:03] [Setup runtime]  .../ActiveDirectory/DirectoryServerCollection.cs   |  14 +-
[00:00:03] [Setup runtime]  .../ActiveDirectory/ReadOnlyStringCollection.cs    |   4 +-
[00:00:03] [Setup runtime]  .../ActiveDirectory/ReplicationConnection.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/DirectoryServices/DirectoryEntry.cs |  18 +-
[00:00:03] [Setup runtime]  .../System/DirectoryServices/DirectorySearcher.cs  |   4 +-
[00:00:03] [Setup runtime]  .../System/DirectoryServices/PropertyCollection.cs |   6 +-
[00:00:03] [Setup runtime]  .../DirectoryServices/PropertyValueCollection.cs   |  14 +-
[00:00:03] [Setup runtime]  .../ResultPropertyValueCollection.cs               |   4 +-
[00:00:03] [Setup runtime]  .../src/System/IO/Packaging/PackUriHelper.cs       |   2 +-
[00:00:03] [Setup runtime]  .../Expressions/Compiler/LambdaCompiler.Logical.cs |   2 +-
[00:00:03] [Setup runtime]  .../Compiler/LambdaCompiler.Statements.cs          |   6 +-
[00:00:03] [Setup runtime]  .../Expressions/Interpreter/CallInstruction.cs     |   2 +-
[00:00:03] [Setup runtime]  .../Interpreter/ControlFlowInstructions.cs         |   2 +-
[00:00:03] [Setup runtime]  .../Expressions/Interpreter/InstructionList.cs     |   4 +-
[00:00:03] [Setup runtime]  .../Inlined/InlinedAggregationOperator.cs          |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Linq/SkipTake.SpeedOpt.cs           |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Management/ManagementBaseObject.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Management/ManagementException.cs   |  16 +-
[00:00:03] [Setup runtime]  .../src/System/Management/ManagementObject.cs      |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Management/Property.cs              |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Management/Qualifier.cs             |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Http/WinHttpAuthHelper.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Http/WinHttpRequestCallback.cs  |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Http/CancellationHelper.cs      |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Http/Headers/HttpHeaders.cs     |   2 +-
[00:00:03] [Setup runtime]  .../Net/WebSockets/HttpListenerWebSocketContext.cs |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Mail/SmtpConnection.cs          |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/FtpControlStream.cs             |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/FtpWebRequest.cs                |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Net/HttpWebRequest.cs               |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Security/NegotiateStream.cs     |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Net/Sockets/NetworkStream.cs        |  24 +-
[00:00:03] [Setup runtime]  .../src/System/Net/WebClient.cs                    |  48 ++--
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Boolean.cs   |   8 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Byte.cs      |   8 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Char.cs      |   8 +-
[00:00:03] [Setup runtime]  .../Collections/Concurrent/ConcurrentDictionary.cs |  10 +-
[00:00:03] [Setup runtime]  .../System/Collections/Generic/EqualityComparer.cs |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Collections/Hashtable.cs            |   8 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/DateTime.cs  |   4 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Decimal.cs   |   4 +-
[00:00:03] [Setup runtime]  .../System/Diagnostics/Tracing/EventProvider.cs    |  66 ++---
[00:00:03] [Setup runtime]  .../System/Diagnostics/Tracing/ManifestBuilder.cs  |   4 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Int16.cs     |   8 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Int32.cs     |   4 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Int64.cs     |   4 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/Memory.cs    |   4 +-
[00:00:03] [Setup runtime]  .../src/System/MemoryExtensions.cs                 |  16 +-
[00:00:03] [Setup runtime]  .../DefaultInterpolatedStringHandler.cs            |  16 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/SByte.cs     |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Text/StringBuilder.cs               |  16 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/UInt16.cs    |   8 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/UInt32.cs    |   4 +-
[00:00:03] [Setup runtime]  .../System.Private.CoreLib/src/System/UInt64.cs    |   4 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/ClassDataContract.cs     |   2 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/ExceptionUtility.cs      |   6 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/ExtensionDataReader.cs   |   2 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/Json/JsonDataContract.cs |   2 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/Json/XmlJsonWriter.cs    |  60 ++---
[00:00:03] [Setup runtime]  .../System/Runtime/Serialization/SchemaExporter.cs |  20 +-
[00:00:03] [Setup runtime]  .../System/Runtime/Serialization/SchemaHelper.cs   |   4 +-
[00:00:03] [Setup runtime]  .../System/Runtime/Serialization/SchemaImporter.cs |  10 +-
[00:00:03] [Setup runtime]  .../Runtime/Serialization/XPathQueryGenerator.cs   |   4 +-
[00:00:03] [Setup runtime]  .../XmlObjectSerializerReadContext.cs              |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XmlBaseWriter.cs                |  64 ++---
[00:00:03] [Setup runtime]  .../src/System/Xml/XmlConverter.cs                 |  44 ++--
[00:00:03] [Setup runtime]  .../src/System/Xml/Linq/XContainer.cs              |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Linq/XLinq.cs                   |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Linq/XObject.cs                 |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XPath/XNodeNavigator.cs         |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Core/XmlAsyncCheckReader.cs     |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Core/XmlTextReaderImpl.cs       |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Core/XmlTextReaderImplAsync.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Dom/XmlAttributeCollection.cs   |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Dom/XmlNode.cs                  |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/ContentValidator.cs      |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/Preprocessor.cs          |  38 +--
[00:00:03] [Setup runtime]  .../System/Xml/Schema/SchemaCollectionCompiler.cs  | 128 ++++-----
[00:00:03] [Setup runtime]  .../Xml/Schema/SchemaCollectionpreProcessor.cs     |  44 ++--
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/SchemaSetCompiler.cs     | 104 ++++----
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XmlSchemaComplexType.cs  |  16 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XmlSchemaDataType.cs     |  12 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XmlSchemaFacet.cs        |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XmlSchemaSimpleType.cs   |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XmlValueConverter.cs     |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Schema/XsdBuilder.cs            |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/CodeGenerator.cs  |  28 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/ImportContext.cs  |  16 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/Mappings.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/Models.cs         |  20 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/NameTable.cs      |   4 +-
[00:00:03] [Setup runtime]  .../ReflectionXmlSerializationWriter.cs            |  38 +--
[00:00:03] [Setup runtime]  .../System/Xml/Serialization/SchemaObjectWriter.cs | 178 ++++++-------
[00:00:03] [Setup runtime]  .../Xml/Serialization/SoapReflectionImporter.cs    |   8 +-
[00:00:03] [Setup runtime]  .../Xml/Serialization/XmlReflectionImporter.cs     |  24 +-
[00:00:03] [Setup runtime]  .../System/Xml/Serialization/XmlSchemaExporter.cs  |  92 +++----
[00:00:03] [Setup runtime]  .../System/Xml/Serialization/XmlSchemaImporter.cs  | 110 ++++----
[00:00:03] [Setup runtime]  .../src/System/Xml/Serialization/XmlSchemas.cs     |  56 ++--
[00:00:03] [Setup runtime]  .../Serialization/XmlSerializationGeneratedCode.cs |   4 +-
[00:00:03] [Setup runtime]  .../Xml/Serialization/XmlSerializationILGen.cs     |   4 +-
[00:00:03] [Setup runtime]  .../Xml/Serialization/XmlSerializationReader.cs    |  44 ++--
[00:00:03] [Setup runtime]  .../Serialization/XmlSerializationReaderILGen.cs   |  24 +-
[00:00:03] [Setup runtime]  .../Xml/Serialization/XmlSerializationWriter.cs    |  46 ++--
[00:00:03] [Setup runtime]  .../Serialization/XmlSerializationWriterILGen.cs   |  40 +--
[00:00:03] [Setup runtime]  .../System/Xml/XPath/Internal/BooleanFunctions.cs  |   4 +-
[00:00:03] [Setup runtime]  .../System/Xml/XPath/Internal/ExtensionQuery.cs    |  16 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XPath/Internal/FilterQuery.cs   |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XPath/Internal/QueryBuilder.cs  |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/XPath/Internal/XPathParser.cs   |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/IlGen/XmlIlVisitor.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/QIL/QilXmlWriter.cs         |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/Runtime/XmlQueryContext.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/Runtime/XmlQueryOutput.cs   |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/Runtime/XmlQueryRuntime.cs  |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/Runtime/XmlSortKey.cs       |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XPath/XPathQilFactory.cs    |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XmlQueryCardinality.cs      |   4 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/Xslt/InvokeGenerator.cs     |   2 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XsltOld/Compiler.cs         |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XsltOld/NumberAction.cs     |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XsltOld/Processor.cs        |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XsltOld/RootAction.cs       |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Xml/Xsl/XsltOld/TemplateAction.cs   |   2 +-
[00:00:03] [Setup runtime]  .../System/Xml/Xsl/XsltOld/XsltCompileContext.cs   |   2 +-
[00:00:03] [Setup runtime]  .../Reflection/Context/Projection/Projector.cs     |   2 +-
[00:00:03] [Setup runtime]  .../System/Reflection/Metadata/MetadataReader.cs   |   2 +-
[00:00:03] [Setup runtime]  .../Reflection/TypeLoading/General/Helpers.cs      |   2 +-
[00:00:03] [Setup runtime]  .../Formatters/Binary/BinaryObjectInfo.cs          |   8 +-
[00:00:03] [Setup runtime]  .../Formatters/Binary/BinaryObjectWriter.cs        |   4 +-
[00:00:03] [Setup runtime]  .../System/Runtime/Serialization/ObjectManager.cs  |  28 +-
[00:00:03] [Setup runtime]  .../Serialization/Schema/DiagnosticUtility.cs      |   6 +-
[00:00:03] [Setup runtime]  .../src/System/Security/AccessControl/ACE.cs       |   2 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/Xml/CanonicalXml.cs      |   4 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/CanonicalXmlNodeList.cs       |   6 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/Xml/EncryptedXml.cs      |   6 +-
[00:00:03] [Setup runtime]  .../Xml/EncryptionPropertyCollection.cs            |  12 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/Xml/ExcCanonicalXml.cs   |   4 +-
[00:00:03] [Setup runtime]  .../System/Security/Cryptography/Xml/Reference.cs  |   4 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/Xml/ReferenceList.cs     |   6 +-
[00:00:03] [Setup runtime]  .../Security/Cryptography/Xml/TransformChain.cs    |   8 +-
[00:00:03] [Setup runtime]  .../src/System/Security/Cryptography/Xml/Utils.cs  |   2 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDecryptionTransform.cs     |   8 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDsigBase64Transform.cs     |  12 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDsigC14NTransform.cs       |  12 +-
[00:00:03] [Setup runtime]  .../Xml/XmlDsigEnvelopedSignatureTransform.cs      |  12 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDsigExcC14NTransform.cs    |  12 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDsigXPathTransform.cs      |  12 +-
[00:00:03] [Setup runtime]  .../Cryptography/Xml/XmlDsigXsltTransform.cs       |  12 +-
[00:00:03] [Setup runtime]  .../Cryptography/X509Certificates/FindPal.cs       |  12 +-
[00:00:03] [Setup runtime]  .../X509Certificates/X509CertificateCollection.cs  |   2 +-
[00:00:03] [Setup runtime]  .../SyndicationElementExtensionCollection.cs       |   4 +-
[00:00:03] [Setup runtime]  .../src/Internal/SapiInterop/SapiRecognizer.cs     |   4 +-
[00:00:03] [Setup runtime]  .../src/Internal/SrgsParser/XmlParser.cs           |   2 +-
[00:00:03] [Setup runtime]  .../src/Recognition/GrammarBuilder.cs              |   2 +-
[00:00:03] [Setup runtime]  273 files changed, 1982 insertions(+), 1982 deletions(-)
[00:00:03] [Setup runtime] + git log -1
[00:00:03] [Setup runtime] commit 0dfcc658ddfd969a7e10773aad585bd0f70d83cb
[00:00:03] [Setup runtime] Merge: 651c190010c a67c37b118d
[00:00:03] [Setup runtime] Author: build <build@build.foo>
[00:00:03] [Setup runtime] Date:   Fri Jul 3 16:44:41 2026 +0000
[00:00:03] [Setup runtime] 
[00:00:03] [Setup runtime]     Merge remote-tracking branch 'combineWith1/fold-is-cast-patterns' into pr
[00:00:03] [Setup runtime] + git switch main
[00:00:04] [Setup runtime] Switched to branch 'main'
[00:00:04] [Setup runtime] Your branch is up to date with 'origin/main'.
[00:00:04] main commit: 651c190010ca653681e336b6549a126c6d78a7cb
[00:00:04] pr commit: a67c37b118deb65cc87ecfa48965f733e0ef5ebb
[00:00:04] Running 'git switch pr' from 'runtime'
[00:00:04] Switched to branch 'pr'
[00:00:04] [pr release] Running 'bash build.sh clr+libs -c Release -p:RunAnalyzers=false -p:ApiCompatValidateAssemblies=false' from 'runtime'
[00:00:05] [pr release] 
[00:00:06] [pr release]   Determining projects to restore...
[00:00:06] [pr release]   Tool 'coverlet.console' (version '6.0.4') was restored. Available commands: coverlet
[00:00:06] [pr release]   Tool 'dotnet-reportgenerator-globaltool' (version '5.4.3') was restored. Available commands: reportgenerator
[00:00:06] [pr release]   Tool 'microsoft.dotnet.xharness.cli' (version '11.0.0-prerelease.26319.2') was restored. Available commands: xharness
[00:00:06] [pr release]   Tool 'microsoft.visualstudio.slngen.tool' (version '12.0.15') was restored. Available commands: slngen
[00:00:06] [pr release]   
[00:00:06] [pr release]   Restore was successful.
[00:00:07] [pr release]   All projects are up-to-date for restore.
[00:00:07] [pr release]   Determining projects to restore...
[00:00:24] [pr release]   Restored /runner/runtime/src/tasks/HelixTestTasks/HelixTestTasks.csproj (in 133 ms).
[00:00:24] [pr release]   Restored /runner/runtime/src/tasks/Crossgen2Tasks/Crossgen2Tasks.csproj (in 133 ms).
[00:00:24] [pr release]   578 of 580 projects are up-to-date for restore.
[00:00:25] [pr release]   installer.tasks -> /runner/runtime/artifacts/bin/installer.tasks/Release/installer.tasks.dll
[00:00:27] [pr release]   Crossgen2Tasks -> /runner/runtime/artifacts/bin/Crossgen2Tasks/Release/Crossgen2Tasks.dll
[00:00:27] [pr release]   HelixTestTasks -> /runner/runtime/artifacts/bin/HelixTestTasks/Release/net11.0/HelixTestTasks.dll
[00:00:28] [pr release]   ILLink.RoslynAnalyzer -> /runner/runtime/artifacts/bin/ILLink.RoslynAnalyzer/Release/netstandard2.0/ILLink.RoslynAnalyzer.dll
[00:00:28] [pr release]   ILLink.CodeFixProvider -> /runner/runtime/artifacts/bin/ILLink.CodeFixProvider/Release/netstandard2.0/ILLink.CodeFixProvider.dll
[00:00:28] [pr release]   Mono.Linker -> /runner/runtime/artifacts/bin/Mono.Linker/ref/Release/net11.0/illink.dll
[00:00:28] [pr release]   Mono.Linker -> /runner/runtime/artifacts/bin/Mono.Linker/Release/net11.0/illink.dll
[00:00:28] [pr release]   ILLink.Tasks -> /runner/runtime/artifacts/bin/ILLink.Tasks/Release/net/ILLink.Tasks.dll
[00:00:28] [pr release]   System.Private.CoreLib.Generators -> /runner/runtime/artifacts/bin/System.Private.CoreLib.Generators/Release/netstandard2.0/System.Private.CoreLib.Generators.dll
[00:00:28] [pr release]   System.Private.CoreLib -> /runner/runtime/artifacts/bin/System.Private.CoreLib/ref/Release/net11.0/System.Private.CoreLib.dll
[00:00:28] [pr release]   EventSourceGenerator -> /runner/runtime/artifacts/bin/EventSourceGenerator/Release/netstandard2.0/EventSourceGenerator.dll
[00:00:28] [pr release]   Microsoft.Interop.SourceGeneration -> /runner/runtime/artifacts/bin/Microsoft.Interop.SourceGeneration/Release/netstandard2.0/Microsoft.Interop.SourceGeneration.dll
[00:00:28] [pr release]   LibraryImportGenerator -> /runner/runtime/artifacts/bin/LibraryImportGenerator/Release/netstandard2.0/Microsoft.Interop.LibraryImportGenerator.dll
[00:00:43] [pr release]   System.Private.CoreLib -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/IL/System.Private.CoreLib.dll
[00:00:43] [pr release]   cdac-build-tool -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/cdac-build-tool/cdac-build-tool.dll
[00:00:43] [pr release]   Executing "/runner/runtime/src/coreclr/build-runtime.sh" -x64 -release -os linux -ninja -pgodatapath "/root/.nuget/packages/optimization.linux-x64.pgo.coreclr/1.0.0-prerelease.26318.1" -targetrid linux-x64 -cmakeargs "-DCLR_DOTNET_RID=linux-x64" -cmakeargs "-DCLR_DOTNET_HOST_PATH='/usr/lib/dotnet/dotnet'" -cmakeargs "-DCDAC_BUILD_TOOL_BINARY_PATH=/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/cdac-build-tool/cdac-build-tool.dll" -cmakeargs "-DFEATURE_DYNAMIC_CODE_COMPILED=1" 
[00:00:43] [pr release]   Commencing CoreCLR Repo build
[00:00:43] [pr release]   __TargetRid: linux-x64
[00:00:43] [pr release]   Setting up directories for build
[00:00:43] [pr release]   Checking prerequisites...
[00:00:43] [pr release]   /usr/bin/ninja
[00:00:43] [pr release]   Commencing build of "install" target in "CoreCLR component" for linux.x64.Release in /runner/runtime/artifacts/obj/coreclr/linux.x64.Release
[00:00:43] [pr release]   Invoking "/runner/runtime/eng/native/gen-buildsys.sh" "/runner/runtime/src/coreclr" "/runner/runtime/artifacts/obj/coreclr/linux.x64.Release" x64 linux clang Release "ninja"  -DCLR_CMAKE_PGO_INSTRUMENT=0 -DCLR_CMAKE_OPTDATA_PATH=/root/.nuget/packages/optimization.linux-x64.pgo.coreclr/1.0.0-prerelease.26318.1 -DCLR_CMAKE_PGO_OPTIMIZE=1 -DCLI_CMAKE_FALLBACK_OS="linux" -DFEATURE_DISTRO_AGNOSTIC_SSL=1 -DFEATURE_DYNAMIC_CODE_COMPILED=1 -DCDAC_BUILD_TOOL_BINARY_PATH=/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/cdac-build-tool/cdac-build-tool.dll -DCLR_DOTNET_HOST_PATH='/usr/lib/dotnet/dotnet' -DCLR_DOTNET_RID=linux-x64 
[00:00:44] [pr release]   Not searching for unused variables given on the command line.
[00:00:44] [pr release]   -- The linker identification is Ubuntu LLD 18.1.3 (compatible with GNU linkers)
[00:00:44] [pr release]   Detected Linux x86_64
[00:00:44] [pr release]   -- Using CMake version 3.28.3
[00:00:44] [pr release]   -- ZLIB_HEADER_VERSION: 1.3.1
[00:00:44] [pr release]   -- ZLIBNG_HEADER_VERSION: 2.2.5
[00:00:44] [pr release]   -- Arch detected: 'x86_64'
[00:00:44] [pr release]   -- Basearch of 'x86_64' has been detected as: 'x86'
[00:00:44] [pr release]   -- Architecture-specific source files: arch/x86/x86_features.c;arch/x86/chunkset_sse2.c;arch/x86/compare256_sse2.c;arch/x86/slide_hash_sse2.c;arch/x86/adler32_ssse3.c;arch/x86/chunkset_ssse3.c;arch/x86/adler32_sse42.c;arch/x86/crc32_pclmulqdq.c;arch/x86/slide_hash_avx2.c;arch/x86/chunkset_avx2.c;arch/x86/compare256_avx2.c;arch/x86/adler32_avx2.c;arch/x86/adler32_avx512.c;arch/x86/chunkset_avx512.c;arch/x86/adler32_avx512_vnni.c;arch/x86/crc32_vpclmulqdq.c
[00:00:44] [pr release]   -- The following features have been enabled:
[00:00:44] [pr release]   
[00:00:44] [pr release]    * CMAKE_BUILD_TYPE, Build type: RELEASE (selected)
[00:00:44] [pr release]    * XSAVE, Support XSAVE intrinsics using "-mxsave"
[00:00:44] [pr release]    * SSSE3_ADLER32, Support SSSE3-accelerated adler32, using "-mssse3"
[00:00:44] [pr release]    * SSE42_CRC, Support SSE4.2 optimized adler32 hash generation, using "-msse4.2"
[00:00:44] [pr release]    * PCLMUL_CRC, Support CRC hash generation using PCLMULQDQ, using "-msse4.2 -mpclmul"
[00:00:44] [pr release]    * AVX2_SLIDEHASH, Support AVX2 optimized slide_hash, using "-mavx2 -mbmi2"
[00:00:44] [pr release]    * AVX2_CHUNKSET, Support AVX2 optimized chunkset, using "-mavx2 -mbmi2"
[00:00:44] [pr release]    * AVX2_COMPARE256, Support AVX2 optimized compare256, using "-mavx2 -mbmi2"
[00:00:44] [pr release]    * AVX2_ADLER32, Support AVX2-accelerated adler32, using "-mavx2 -mbmi2"
[00:00:44] [pr release]    * AVX512_ADLER32, Support AVX512-accelerated adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:00:44] [pr release]    * AVX512_CHUNKSET, Support AVX512 optimized chunkset, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:00:44] [pr release]    * AVX512VNNI_ADLER32, Support AVX512VNNI adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mavx512vnni -mbmi2 -mtune=cascadelake"
[00:00:44] [pr release]    * VPCLMUL_CRC, Support CRC hash generation using VPCLMULQDQ, using "-mpclmul -mvpclmulqdq -mavx512f -mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:00:44] [pr release]    * WITH_GZFILEOP, Compile with support for gzFile related functions
[00:00:44] [pr release]    * ZLIB_COMPAT, Compile with zlib compatible API
[00:00:44] [pr release]    * WITH_SANITIZER, Enable sanitizer support
[00:00:44] [pr release]    * WITH_GTEST, Build gtest_zlib
[00:00:44] [pr release]    * WITH_OPTIM, Build with optimisation
[00:00:44] [pr release]    * WITH_NEW_STRATEGIES, Use new strategies
[00:00:44] [pr release]    * WITH_RUNTIME_CPU_DETECTION, Build with runtime CPU detection
[00:00:44] [pr release]    * WITH_AVX2, Build with AVX2
[00:00:44] [pr release]    * WITH_AVX512, Build with AVX512
[00:00:44] [pr release]    * WITH_AVX512VNNI, Build with AVX512 VNNI
[00:00:44] [pr release]    * WITH_SSE2, Build with SSE2
[00:00:44] [pr release]    * WITH_SSSE3, Build with SSSE3
[00:00:44] [pr release]    * WITH_SSE42, Build with SSE42
[00:00:44] [pr release]    * WITH_PCLMULQDQ, Build with PCLMULQDQ
[00:00:44] [pr release]    * WITH_VPCLMULQDQ, Build with VPCLMULQDQ
[00:00:44] [pr release]   
[00:00:44] [pr release]   -- The following OPTIONAL packages have been found:
[00:00:44] [pr release]   
[00:00:44] [pr release]    * OpenSSL
[00:00:44] [pr release]   
[00:00:44] [pr release]   -- The following features have been disabled:
[00:00:44] [pr release]   
[00:00:44] [pr release]    * ZLIB_SYMBOL_PREFIX, Publicly exported symbols DO NOT have a custom prefix
[00:00:44] [pr release]    * ZLIB_ENABLE_TESTS, Build test binaries
[00:00:44] [pr release]    * ZLIBNG_ENABLE_TESTS, Test zlib-ng specific API
[00:00:44] [pr release]    * WITH_FUZZERS, Build test/fuzz
[00:00:44] [pr release]    * WITH_BENCHMARKS, Build test/benchmarks
[00:00:44] [pr release]    * WITH_BENCHMARK_APPS, Build application benchmarks
[00:00:44] [pr release]    * WITH_NATIVE_INSTRUCTIONS, Instruct the compiler to use the full instruction set on this host (gcc/clang -march=native)
[00:00:44] [pr release]    * WITH_MAINTAINER_WARNINGS, Build with project maintainer warnings
[00:00:44] [pr release]    * WITH_CODE_COVERAGE, Enable code coverage reporting
[00:00:44] [pr release]    * WITH_INFLATE_STRICT, Build with strict inflate distance checking
[00:00:44] [pr release]    * WITH_INFLATE_ALLOW_INVALID_DIST, Build with zero fill for inflate invalid distances
[00:00:44] [pr release]    * INSTALL_UTILS, Copy minigzip and minideflate during install
[00:00:44] [pr release]   
[00:00:44] [pr release]   -- The following OPTIONAL packages have not been found:
[00:00:44] [pr release]   
[00:00:44] [pr release]    * PkgConfig
[00:00:44] [pr release]   
[00:00:44] [pr release]   -- Build type is 'RELEASE'
[00:00:44] [pr release]   -- Compiler is not EMSCRIPTEN
[00:00:44] [pr release]   -- ZSTD VERSION: 1.5.7
[00:00:44] [pr release]   -- CMAKE_INSTALL_PREFIX: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release
[00:00:44] [pr release]   -- CMAKE_INSTALL_LIBDIR: lib
[00:00:44] [pr release]   -- ZSTD_LEGACY_SUPPORT not defined!
[00:00:44] [pr release]   -- ZSTD_MULTITHREAD_SUPPORT is disabled
[00:00:44] [pr release]   -- OPENSSL_INCLUDE_DIR:    /usr/include
[00:00:44] [pr release]   -- OPENSSL_CRYPTO_LIBRARY: /usr/lib/x86_64-linux-gnu/libcrypto.so
[00:00:44] [pr release]   -- OPENSSL_SSL_LIBRARY:    /usr/lib/x86_64-linux-gnu/libssl.so
[00:00:44] [pr release]   -- OPENSSL_VERSION:        3.0.13
[00:00:44] [pr release]   CMake Warning at pgosupport.cmake:62 (message):
[00:00:44] [pr release]     LTO is not supported or PGO optimization data not compatible, skipping
[00:00:44] [pr release]     profile guided optimizations for clrjit
[00:00:44] [pr release]   Call Stack (most recent call first):
[00:00:44] [pr release]     jit/CMakeLists.txt:730 (add_pgo)
[00:00:44] [pr release]   
[00:00:44] [pr release]   
[00:00:44] [pr release]   CMake Warning at pgosupport.cmake:62 (message):
[00:00:44] [pr release]     LTO is not supported or PGO optimization data not compatible, skipping
[00:00:44] [pr release]     profile guided optimizations for vm_gc_wks
[00:00:44] [pr release]   Call Stack (most recent call first):
[00:00:44] [pr release]     vm/CMakeLists.txt:1090 (add_pgo)
[00:00:44] [pr release]   
[00:00:44] [pr release]   
[00:00:44] [pr release]   CMake Warning at pgosupport.cmake:62 (message):
[00:00:44] [pr release]     LTO is not supported or PGO optimization data not compatible, skipping
[00:00:44] [pr release]     profile guided optimizations for vm_gc_svr
[00:00:44] [pr release]   Call Stack (most recent call first):
[00:00:44] [pr release]     vm/CMakeLists.txt:1097 (add_pgo)
[00:00:44] [pr release]   
[00:00:44] [pr release]   
[00:00:45] [pr release]   CMake Warning at pgosupport.cmake:62 (message):
[00:00:45] [pr release]     LTO is not supported or PGO optimization data not compatible, skipping
[00:00:45] [pr release]     profile guided optimizations for coreclr
[00:00:45] [pr release]   Call Stack (most recent call first):
[00:00:45] [pr release]     dlls/mscoree/coreclr/CMakeLists.txt:277 (add_pgo)
[00:00:45] [pr release]   
[00:00:45] [pr release]   
[00:00:45] [pr release]   -- Configuring done (1.2s)
[00:00:45] [pr release]   -- Generating done (0.3s)
[00:00:45] [pr release]   -- Build files have been written to: /runner/runtime/artifacts/obj/coreclr/linux.x64.Release
[00:00:45] [pr release]   /runner/runtime/artifacts/obj/coreclr/linux.x64.Release /runner/runtime/src/coreclr
[00:00:45] [pr release]   Executing /usr/bin/ninja -j 32 install
[00:00:46] [pr release]   [1/111] Building ASM object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/setcontext.S.o
[00:00:46] [pr release]   [2/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_fpreg.c.o
[00:00:46] [pr release]   [3/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lglobal.c.o
[00:00:46] [pr release]   [4/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Ldestroy_addr_space.c.o
[00:00:46] [pr release]   [5/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/is_fpreg.c.o
[00:00:46] [pr release]   [6/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/regname.c.o
[00:00:46] [pr release]   [7/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-info-list.c.o
[00:00:46] [pr release]   [8/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lput_dynamic_unwind_info.c.o
[00:00:46] [pr release]   [9/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lapply_reg_state.c.o
[00:00:46] [pr release]   [10/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lreg_states_iterate.c.o
[00:00:46] [pr release]   [11/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lcreate_addr_space.c.o
[00:00:46] [pr release]   [12/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_reg.c.o
[00:00:46] [pr release]   [13/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/init.c.o
[00:00:46] [pr release]   [14/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lget_save_loc.c.o
[00:00:46] [pr release]   [15/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit.c.o
[00:00:46] [pr release]   [16/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/strerror.c.o
[00:00:46] [pr release]   [17/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Los-linux.c.o
[00:00:46] [pr release]   [18/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-register.c.o
[00:00:46] [pr release]   [19/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Ldyn-extract.c.o
[00:00:46] [pr release]   [20/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_accessors.c.o
[00:00:46] [pr release]   [21/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lget_proc_info_in_range.c.o
[00:00:46] [pr release]   [22/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/flush_cache.c.o
[00:00:46] [pr release]   [23/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/mempool.c.o
[00:00:46] [pr release]   [24/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/backtrace.c.o
[00:00:46] [pr release]   [25/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-cancel.c.o
[00:00:46] [pr release]   [26/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lfind_dynamic_proc_info.c.o
[00:00:46] [pr release]   [27/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_proc_info_by_ip.c.o
[00:00:46] [pr release]   [28/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_proc_name.c.o
[00:00:46] [pr release]   [29/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_reg.c.o
[00:00:46] [pr release]   [30/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_fpreg.c.o
[00:00:46] [pr release]   [31/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_caching_policy.c.o
[00:00:46] [pr release]   [32/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_cache_size.c.o
[00:00:46] [pr release]   [33/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/os-linux.c.o
[00:00:46] [pr release]   [34/111] Building ASM object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/getcontext.S.o
[00:00:46] [pr release]   [35/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit_remote.c.o
[00:00:46] [pr release]   [36/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lget_proc_info.c.o
[00:00:46] [pr release]   [37/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdyn-extract.c.o
[00:00:46] [pr release]   [38/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lresume.c.o
[00:00:46] [pr release]   [39/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit_local.c.o
[00:00:46] [pr release]   [40/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lregs.c.o
[00:00:46] [pr release]   [41/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lstash_frame.c.o
[00:00:46] [pr release]   [42/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gos-linux.c.o
[00:00:46] [pr release]   [43/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdestroy_addr_space.c.o
[00:00:46] [pr release]   [44/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_reg.c.o
[00:00:46] [pr release]   [45/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_caching_policy.c.o
[00:00:46] [pr release]   [46/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_reg.c.o
[00:00:46] [pr release]   [47/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_fpreg.c.o
[00:00:46] [pr release]   [48/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Greg_states_iterate.c.o
[00:00:46] [pr release]   [49/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gput_dynamic_unwind_info.c.o
[00:00:46] [pr release]   [50/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gget_save_loc.c.o
[00:00:46] [pr release]   [51/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_proc_info_by_ip.c.o
[00:00:46] [pr release]   [52/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_fpreg.c.o
[00:00:46] [pr release]   [53/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gcreate_addr_space.c.o
[00:00:46] [pr release]   [54/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gfind_dynamic_proc_info.c.o
[00:00:46] [pr release]   [55/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_cache_size.c.o
[00:00:46] [pr release]   [56/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gglobal.c.o
[00:00:46] [pr release]   [57/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gget_proc_info_in_range.c.o
[00:00:46] [pr release]   [58/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lstep.c.o
[00:00:46] [pr release]   [59/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gapply_reg_state.c.o
[00:00:46] [pr release]   [60/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit.c.o
[00:00:46] [pr release]   [61/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_proc_name.c.o
[00:00:46] [pr release]   [62/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gaddress_validator.c.o
[00:00:46] [pr release]   [63/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit_local.c.o
[00:00:46] [pr release]   [64/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit_remote.c.o
[00:00:46] [pr release]   [65/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gget_proc_info.c.o
[00:00:46] [pr release]   [66/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/global.c.o
[00:00:46] [pr release]   [67/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdyn-remote.c.o
[00:00:46] [pr release]   [68/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gresume.c.o
[00:00:46] [pr release]   [69/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gregs.c.o
[00:00:46] [pr release]   [70/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfind_unwind_table.c.o
[00:00:46] [pr release]   [71/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gstash_frame.c.o
[00:00:46] [pr release]   [72/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfind_unwind_table.c.o
[00:00:46] [pr release]   [73/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ltrace.c.o
[00:00:46] [pr release]   [74/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lpe.c.o
[00:00:46] [pr release]   [75/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfde.c.o
[00:00:46] [pr release]   [76/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gstep.c.o
[00:00:46] [pr release]   [77/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gpe.c.o
[00:00:46] [pr release]   [78/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfind_proc_info-lsb.c.o
[00:00:46] [pr release]   [79/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfind_proc_info-lsb.c.o
[00:00:46] [pr release]   [80/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gtrace.c.o
[00:00:46] [pr release]   [81/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lexpr.c.o
[00:00:46] [pr release]   [82/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/elf64.c.o
[00:00:46] [pr release]   [83/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfde.c.o
[00:00:46] [pr release]   [84/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gexpr.c.o
[00:00:46] [pr release]   [85/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lparser.c.o
[00:00:46] [pr release]   [86/111] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gparser.c.o
[00:00:46] [pr release]   [87/111] Linking CXX static library pal/src/libcoreclrpal.a
[00:00:46] [pr release]   [88/111] Linking CXX shared library tools/superpmi/superpmi-shim-counter/libsuperpmi-shim-counter.so
[00:00:46] [pr release]   Stripping symbols from libsuperpmi-shim-counter.so into libsuperpmi-shim-counter.so.dbg
[00:00:46] [pr release]   [89/111] Linking CXX shared library tools/superpmi/superpmi-shim-simple/libsuperpmi-shim-simple.so
[00:00:46] [pr release]   Stripping symbols from libsuperpmi-shim-simple.so into libsuperpmi-shim-simple.so.dbg
[00:00:46] [pr release]   [90/111] Linking CXX shared library tools/superpmi/superpmi-shim-collector/libsuperpmi-shim-collector.so
[00:00:46] [pr release]   Stripping symbols from libsuperpmi-shim-collector.so into libsuperpmi-shim-collector.so.dbg
[00:00:46] [pr release]   [91/111] Linking CXX executable tools/superpmi/superpmi/superpmi
[00:00:46] [pr release]   Stripping symbols from superpmi into superpmi.dbg
[00:00:46] [pr release]   [92/111] Linking CXX executable tools/superpmi/mcs/mcs
[00:00:46] [pr release]   Stripping symbols from mcs into mcs.dbg
[00:00:46] [pr release]   [93/111] Linking CXX executable ildasm/exe/ildasm
[00:00:46] [pr release]   Stripping symbols from ildasm into ildasm.dbg
[00:00:46] [pr release]   [94/111] Linking CXX executable ilasm/ilasm
[00:00:46] [pr release]   Stripping symbols from ilasm into ilasm.dbg
[00:00:47] [pr release]   [95/111] Linking CXX shared library jit/libclrjit_universal_wasm_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_universal_wasm_x64.so into libclrjit_universal_wasm_x64.so.dbg
[00:00:47] [pr release]   [96/111] Linking CXX shared library jit/libclrjit_universal_arm_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_universal_arm_x64.so into libclrjit_universal_arm_x64.so.dbg
[00:00:47] [pr release]   [97/111] Linking CXX shared library jit/libclrjit.so
[00:00:47] [pr release]   Stripping symbols from libclrjit.so into libclrjit.so.dbg
[00:00:47] [pr release]   [98/111] Linking CXX shared library jit/libclrjit_universal_arm64_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_universal_arm64_x64.so into libclrjit_universal_arm64_x64.so.dbg
[00:00:47] [pr release]   [99/111] Linking CXX shared library jit/libclrjit_win_x64_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_win_x64_x64.so into libclrjit_win_x64_x64.so.dbg
[00:00:47] [pr release]   [100/111] Linking CXX shared library jit/libclrjit_unix_x64_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_unix_x64_x64.so into libclrjit_unix_x64_x64.so.dbg
[00:00:47] [pr release]   [101/111] Linking CXX shared library jit/libclrjit_win_x86_x64.so
[00:00:47] [pr release]   Stripping symbols from libclrjit_win_x86_x64.so into libclrjit_win_x86_x64.so.dbg
[00:00:48] [pr release]   [102/111] Linking CXX shared library dlls/mscoree/coreclr/libcoreclr.so
[00:00:48] [pr release]   Stripping symbols from libcoreclr.so into libcoreclr.so.dbg
[00:00:52] [pr release]   [103/111] Linking CXX shared library dlls/mscordac/libmscordaccore.so
[00:00:52] [pr release]   Stripping symbols from libmscordaccore.so into libmscordaccore.so.dbg
[00:00:53] [pr release]   [104/111] Linking CXX shared library dlls/mscordbi/libmscordbi.so
[00:00:53] [pr release]   Stripping symbols from libmscordbi.so into libmscordbi.so.dbg
[00:00:53] [pr release]   [105/111] Generating mscordaccore module index file -> /runner/runtime/artifacts/obj/coreclr/linux.x64.Release/debug/runtimeinfo/dacmoduleindex.h
[00:00:53] [pr release]   [106/111] Generating coreclr module index file -> /runner/runtime/artifacts/obj/coreclr/linux.x64.Release/debug/runtimeinfo/runtimemoduleindex.h
[00:00:53] [pr release]   [107/111] Generating mscordbi module index file -> /runner/runtime/artifacts/obj/coreclr/linux.x64.Release/debug/runtimeinfo/dbimoduleindex.h
[00:00:53] [pr release]   [108/111] Building CXX object debug/runtimeinfo/CMakeFiles/runtimeinfo.dir/runtimeinfo.cpp.o
[00:00:53] [pr release]   [109/111] Linking CXX static library debug/runtimeinfo/libruntimeinfo.a
[00:00:58] [pr release]   [110/111] Linking CXX executable Corehost.Static/singlefilehost
[00:00:58] [pr release]   Stripping symbols from singlefilehost into singlefilehost.dbg
[00:00:58] [pr release]   [110/111] Install the project...
[00:00:58] [pr release]   -- Install configuration: "RELEASE"
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/corehost/singlefilehost.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/corehost/singlefilehost
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/lib/libcoreclrpal.a
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./ilasm
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./ilasm.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./ildasm
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./ildasm.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libclrjit.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libclrjit.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_arm64_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_arm64_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_wasm_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_wasm_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_unix_x64_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_unix_x64_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_win_x64_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_win_x64_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_arm_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_universal_arm_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_win_x86_x64.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libclrjit_win_x86_x64.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/lib/libruntimeinfo.a
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libmscordbi.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libmscordbi.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libmscordbi.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libmscordbi.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libmscordaccore.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libmscordaccore.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libmscordaccore.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libmscordaccore.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libcoreclr.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libcoreclr.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libcoreclr.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/sharedFramework/libcoreclr.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./superpmi
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./superpmi.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./mcs
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./mcs.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-collector.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-collector.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-counter.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-counter.so.dbg
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-simple.so
[00:00:58] [pr release]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/./libsuperpmi-shim-simple.so.dbg
[00:00:58] [pr release]   /runner/runtime/src/coreclr
[00:00:58] [pr release]   Repo successfully built.
[00:00:58] [pr release]   Product binaries are available at /runner/runtime/artifacts/bin/coreclr/linux.x64.Release
[00:00:58] [pr release]   runincontext -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/runincontext.dll
[00:00:58] [pr release]   tieringtest -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/tieringtest.dll
[00:00:59] [pr release]   ILCompiler.Reflection.ReadyToRun -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/ILCompiler.Reflection.ReadyToRun.dll
[00:00:59] [pr release]   ILCompiler.TypeSystem -> /runner/runtime/artifacts/bin/ILCompiler.TypeSystem/x64/Release/ILCompiler.TypeSystem.dll
[00:00:59] [pr release]   ILCompiler.Diagnostics -> /runner/runtime/artifacts/bin/ILCompiler.Diagnostics/x64/Release/ILCompiler.Diagnostics.dll
[00:00:59] [pr release]   R2RDump -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/R2RDump/R2RDump.dll
[00:00:59] [pr release]   dotnet-pgo -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/dotnet-pgo/dotnet-pgo.dll
[00:00:59] [pr release]   repro -> /runner/runtime/artifacts/bin/repro/x64/Release/repro.dll
[00:00:59] [pr release]   R2RTest -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/R2RTest/R2RTest.dll
[00:00:59] [pr release]   PdbChecker -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/PdbChecker/PdbChecker.dll
[00:00:59] [pr release]   AssemblyChecker -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/AssemblyChecker/AssemblyChecker.dll
[00:00:59] [pr release]   ILVerify -> /runner/runtime/artifacts/bin/ILVerify/x64/Release/ILVerify.dll
[00:00:59] [pr release]   ILVerification -> /runner/runtime/artifacts/bin/ILVerification/x64/Release/ILVerification.dll
[00:00:59] [pr release]   ILCompiler.DependencyAnalysisFramework -> /runner/runtime/artifacts/bin/ILCompiler.DependencyAnalysisFramework/x64/Release/ILCompiler.DependencyAnalysisFramework.dll
[00:00:59] [pr release]   ILTrim.Core -> /runner/runtime/artifacts/bin/ILTrim.Core/x64/Release/ILTrim.Core.dll
[00:00:59] [pr release]   ILTrim -> /runner/runtime/artifacts/bin/ILTrim/x64/Release/ILTrim.dll
[00:01:00] [pr release]   Microsoft.Diagnostics.DataContractReader.DataGenerator -> /runner/runtime/artifacts/bin/Microsoft.Diagnostics.DataContractReader.DataGenerator/Release/Microsoft.Diagnostics.DataContractReader.DataGenerator.dll
[00:01:00] [pr release]   Microsoft.Diagnostics.DataContractReader.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Diagnostics.DataContractReader.Abstractions/Release/Microsoft.Diagnostics.DataContractReader.Abstractions.dll
[00:01:00] [pr release]   Microsoft.Diagnostics.DataContractReader.Contracts -> /runner/runtime/artifacts/bin/Microsoft.Diagnostics.DataContractReader.Contracts/Release/Microsoft.Diagnostics.DataContractReader.Contracts.dll
[00:01:00] [pr release]   Microsoft.Diagnostics.DataContractReader -> /runner/runtime/artifacts/bin/Microsoft.Diagnostics.DataContractReader/Release/Microsoft.Diagnostics.DataContractReader.dll
[00:01:00] [pr release]   StressLogAnalyzer -> /runner/runtime/artifacts/bin/StressLogAnalyzer/Release/net11.0/StressLogAnalyzer.dll
[00:01:00] [pr release]   ILCompiler.MetadataTransform -> /runner/runtime/artifacts/bin/ILCompiler.MetadataTransform/x64/Release/ILCompiler.MetadataTransform.dll
[00:01:00] [pr release]   ILCompiler.Compiler -> /runner/runtime/artifacts/bin/ILCompiler.Compiler/x64/Release/ILCompiler.Compiler.dll
[00:01:00] [pr release]   ILCompiler.RyuJit -> /runner/runtime/artifacts/bin/ILCompiler.RyuJit/x64/Release/ILCompiler.RyuJit.dll
[00:01:00] [pr release]   ILCompiler_inbuild -> /runner/runtime/artifacts/bin/ILCompiler_inbuild/x64/Release/ilc.dll
[00:01:01] [pr release]   ILCompiler_inbuild -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/x64/ilc/
[00:01:01] [pr release]   ILCompiler.ReadyToRun -> /runner/runtime/artifacts/bin/ILCompiler.ReadyToRun/x64/Release/ILCompiler.ReadyToRun.dll
[00:01:01] [pr release]   crossgen2_inbuild -> /runner/runtime/artifacts/bin/crossgen2_inbuild/x64/Release/crossgen2.dll
[00:01:01] [pr release]   crossgen2_inbuild -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/x64/crossgen2/
[00:01:01] [pr release]   DownlevelLibraryImportGenerator -> /runner/runtime/artifacts/bin/DownlevelLibraryImportGenerator/Release/netstandard2.0/Microsoft.Interop.LibraryImportGenerator.Downlevel.dll
[00:01:01] [pr release]   ILCompiler.Build.Tasks -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/ilc-published/netstandard/ILCompiler.Build.Tasks.dll
[00:01:01] [pr release]   ILCompiler_publish -> /runner/runtime/artifacts/bin/ILCompiler_publish/x64/Release/ilc.dll
[00:01:02] [pr release]   ILCompiler_publish -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/ilc-published/
[00:01:02] [pr release]   crossgen2_publish -> /runner/runtime/artifacts/bin/crossgen2_publish/x64/Release/crossgen2.dll
[00:01:02] [pr release]   crossgen2_publish -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/crossgen2-published/
[00:01:02] [pr release]   ILAssembler -> /runner/runtime/artifacts/bin/ILAssembler/Release/net11.0/ILAssembler.dll
[00:01:02] [pr release]   ilasm -> /runner/runtime/artifacts/bin/ilasm/Release/ilasm.dll
[00:01:02] [pr release]   ilasm -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/managed-ilasm/
[00:01:02] [pr release]   ILCompiler -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/ilc/ilc.dll
[00:01:02] [pr release]   crossgen2 -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/crossgen2/crossgen2.dll
[00:01:02] [pr release]   SuperFileCheck -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/SuperFileCheck/SuperFileCheck.dll
[00:01:02] [pr release]   cdac-build-tool -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/cdac-build-tool/cdac-build-tool.dll
[00:01:02] [pr release]   Generating native image of System.Private.CoreLib for linux.x64.Release. Logging to 
[00:01:02] [pr release]   /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/x64/crossgen2/crossgen2 -o:/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/System.Private.CoreLib.dll -r:/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/IL/*.dll --targetarch:x64 --obj-format:pe --targetos:linux -m:/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/StandardOptimizationData.mibc --embed-pgo-data -O /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/IL/System.Private.CoreLib.dll --perfmap-format-version:1 --perfmap --perfmap-path:/runner/runtime/artifacts/bin/coreclr/linux.x64.Release/
[00:01:04] [pr release]   Emitting R2R PE file: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/System.Private.CoreLib.dll
[00:01:05] [pr release]   Emitting PerfMap file: /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/System.Private.CoreLib.ni.r2rmap
[00:01:05] [pr release]   Crossgenning of System.Private.CoreLib succeeded.
[00:01:05] [pr release]   Product binaries are available at /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/
[00:01:06] [pr release]   Microsoft.NETCore.TestHost -> /runner/runtime/artifacts/packages/Release/NonShipping/runtime.linux-x64.Microsoft.NETCore.TestHost.11.0.0-dev.nupkg
[00:01:06] [pr release]   Microsoft.NETCore.ILDAsm -> /runner/runtime/artifacts/packages/Release/Shipping/runtime.linux-x64.Microsoft.NETCore.ILDAsm.11.0.0-dev.nupkg
[00:01:06] [pr release]   Microsoft.NETCore.ILAsm -> /runner/runtime/artifacts/packages/Release/Shipping/runtime.linux-x64.Microsoft.NETCore.ILAsm.11.0.0-dev.nupkg
[00:01:06] [pr release]   Microsoft.NETCore.TestHost -> /runner/runtime/artifacts/packages/Release/NonShipping/Microsoft.NETCore.TestHost.11.0.0-dev.nupkg
[00:01:06] [pr release]   Microsoft.NETCore.ILAsm -> /runner/runtime/artifacts/packages/Release/Shipping/Microsoft.NETCore.ILAsm.11.0.0-dev.nupkg
[00:01:06] [pr release]   Microsoft.NETCore.ILDAsm -> /runner/runtime/artifacts/packages/Release/Shipping/Microsoft.NETCore.ILDAsm.11.0.0-dev.nupkg
[00:01:11] [pr release]   System.Private.CoreLib -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/aotsdk/System.Private.CoreLib.dll
[00:01:12] [pr release]   System.Private.TypeLoader -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/aotsdk/System.Private.TypeLoader.dll
[00:01:12] [pr release]   System.Private.Reflection.Execution -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/aotsdk/System.Private.Reflection.Execution.dll
[00:01:13] [pr release]   System.Private.StackTraceMetadata -> /runner/runtime/artifacts/bin/coreclr/linux.x64.Release/aotsdk/System.Private.StackTraceMetadata.dll
[00:01:13] [pr release]   Test.CoreLib -> /runner/runtime/artifacts/bin/Test.CoreLib/x64/Release/Test.CoreLib.dll
[00:01:13] [pr release]   "/runner/runtime/src/native/libs/build-native.sh" x64 Release outconfig net11.0-linux-Release-x64 -os linux  ninja -numproc 32 
[00:01:13] [pr release]   __TargetRid: linux-x64
[00:01:13] [pr release]   Setting up directories for build
[00:01:13] [pr release]   Checking prerequisites...
[00:01:13] [pr release]   /usr/bin/ninja
[00:01:13] [pr release]   Commencing build of "install" target in "native libraries component" for linux.x64.Release in /runner/runtime/artifacts/obj/native/net11.0-linux-Release-x64
[00:01:13] [pr release]   Invoking "/runner/runtime/eng/native/gen-buildsys.sh" "/runner/runtime/src/native/libs" "/runner/runtime/artifacts/obj/native/net11.0-linux-Release-x64" x64 linux clang Release "ninja"  -DCMAKE_STATIC_LIB_LINK=0 -DFEATURE_DISTRO_AGNOSTIC_SSL=1 -DFEATURE_DISTRO_AGNOSTIC_SSL=1 
[00:01:13] [pr release]   Not searching for unused variables given on the command line.
[00:01:13] [pr release]   -- The linker identification is Ubuntu LLD 18.1.3 (compatible with GNU linkers)
[00:01:13] [pr release]   Detected Linux x86_64
[00:01:13] [pr release]   -- Using CMake version 3.28.3
[00:01:13] [pr release]   -- ZLIB_HEADER_VERSION: 1.3.1
[00:01:13] [pr release]   -- ZLIBNG_HEADER_VERSION: 2.2.5
[00:01:13] [pr release]   -- Arch detected: 'x86_64'
[00:01:13] [pr release]   -- Basearch of 'x86_64' has been detected as: 'x86'
[00:01:13] [pr release]   -- Architecture-specific source files: arch/x86/x86_features.c;arch/x86/chunkset_sse2.c;arch/x86/compare256_sse2.c;arch/x86/slide_hash_sse2.c;arch/x86/adler32_ssse3.c;arch/x86/chunkset_ssse3.c;arch/x86/adler32_sse42.c;arch/x86/crc32_pclmulqdq.c;arch/x86/slide_hash_avx2.c;arch/x86/chunkset_avx2.c;arch/x86/compare256_avx2.c;arch/x86/adler32_avx2.c;arch/x86/adler32_avx512.c;arch/x86/chunkset_avx512.c;arch/x86/adler32_avx512_vnni.c;arch/x86/crc32_vpclmulqdq.c
[00:01:13] [pr release]   -- The following features have been enabled:
[00:01:13] [pr release]   
[00:01:13] [pr release]    * CMAKE_BUILD_TYPE, Build type: RELEASE (selected)
[00:01:13] [pr release]    * XSAVE, Support XSAVE intrinsics using "-mxsave"
[00:01:13] [pr release]    * SSSE3_ADLER32, Support SSSE3-accelerated adler32, using "-mssse3"
[00:01:13] [pr release]    * SSE42_CRC, Support SSE4.2 optimized adler32 hash generation, using "-msse4.2"
[00:01:13] [pr release]    * PCLMUL_CRC, Support CRC hash generation using PCLMULQDQ, using "-msse4.2 -mpclmul"
[00:01:13] [pr release]    * AVX2_SLIDEHASH, Support AVX2 optimized slide_hash, using "-mavx2 -mbmi2"
[00:01:13] [pr release]    * AVX2_CHUNKSET, Support AVX2 optimized chunkset, using "-mavx2 -mbmi2"
[00:01:13] [pr release]    * AVX2_COMPARE256, Support AVX2 optimized compare256, using "-mavx2 -mbmi2"
[00:01:13] [pr release]    * AVX2_ADLER32, Support AVX2-accelerated adler32, using "-mavx2 -mbmi2"
[00:01:13] [pr release]    * AVX512_ADLER32, Support AVX512-accelerated adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:01:13] [pr release]    * AVX512_CHUNKSET, Support AVX512 optimized chunkset, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:01:13] [pr release]    * AVX512VNNI_ADLER32, Support AVX512VNNI adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mavx512vnni -mbmi2 -mtune=cascadelake"
[00:01:13] [pr release]    * VPCLMUL_CRC, Support CRC hash generation using VPCLMULQDQ, using "-mpclmul -mvpclmulqdq -mavx512f -mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:01:13] [pr release]    * WITH_GZFILEOP, Compile with support for gzFile related functions
[00:01:13] [pr release]    * ZLIB_COMPAT, Compile with zlib compatible API
[00:01:13] [pr release]    * WITH_SANITIZER, Enable sanitizer support
[00:01:13] [pr release]    * WITH_GTEST, Build gtest_zlib
[00:01:13] [pr release]    * WITH_OPTIM, Build with optimisation
[00:01:13] [pr release]    * WITH_NEW_STRATEGIES, Use new strategies
[00:01:13] [pr release]    * WITH_RUNTIME_CPU_DETECTION, Build with runtime CPU detection
[00:01:13] [pr release]    * WITH_AVX2, Build with AVX2
[00:01:13] [pr release]    * WITH_AVX512, Build with AVX512
[00:01:13] [pr release]    * WITH_AVX512VNNI, Build with AVX512 VNNI
[00:01:13] [pr release]    * WITH_SSE2, Build with SSE2
[00:01:13] [pr release]    * WITH_SSSE3, Build with SSSE3
[00:01:13] [pr release]    * WITH_SSE42, Build with SSE42
[00:01:13] [pr release]    * WITH_PCLMULQDQ, Build with PCLMULQDQ
[00:01:13] [pr release]    * WITH_VPCLMULQDQ, Build with VPCLMULQDQ
[00:01:13] [pr release]   
[00:01:13] [pr release]   -- The following features have been disabled:
[00:01:13] [pr release]   
[00:01:13] [pr release]    * ZLIB_SYMBOL_PREFIX, Publicly exported symbols DO NOT have a custom prefix
[00:01:13] [pr release]    * ZLIB_ENABLE_TESTS, Build test binaries
[00:01:13] [pr release]    * ZLIBNG_ENABLE_TESTS, Test zlib-ng specific API
[00:01:13] [pr release]    * WITH_FUZZERS, Build test/fuzz
[00:01:13] [pr release]    * WITH_BENCHMARKS, Build test/benchmarks
[00:01:13] [pr release]    * WITH_BENCHMARK_APPS, Build application benchmarks
[00:01:13] [pr release]    * WITH_NATIVE_INSTRUCTIONS, Instruct the compiler to use the full instruction set on this host (gcc/clang -march=native)
[00:01:13] [pr release]    * WITH_MAINTAINER_WARNINGS, Build with project maintainer warnings
[00:01:13] [pr release]    * WITH_CODE_COVERAGE, Enable code coverage reporting
[00:01:13] [pr release]    * WITH_INFLATE_STRICT, Build with strict inflate distance checking
[00:01:13] [pr release]    * WITH_INFLATE_ALLOW_INVALID_DIST, Build with zero fill for inflate invalid distances
[00:01:13] [pr release]    * INSTALL_UTILS, Copy minigzip and minideflate during install
[00:01:13] [pr release]   
[00:01:13] [pr release]   -- Build type is 'RELEASE'
[00:01:13] [pr release]   -- Compiler is not EMSCRIPTEN
[00:01:13] [pr release]   -- ZSTD VERSION: 1.5.7
[00:01:13] [pr release]   -- CMAKE_INSTALL_PREFIX: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64
[00:01:13] [pr release]   -- CMAKE_INSTALL_LIBDIR: lib
[00:01:13] [pr release]   -- ZSTD_LEGACY_SUPPORT not defined!
[00:01:13] [pr release]   -- ZSTD_MULTITHREAD_SUPPORT is disabled
[00:01:13] [pr release]   -- OPENSSL_INCLUDE_DIR:    /usr/include
[00:01:13] [pr release]   -- OPENSSL_CRYPTO_LIBRARY: /usr/lib/x86_64-linux-gnu/libcrypto.so
[00:01:13] [pr release]   -- OPENSSL_SSL_LIBRARY:    /usr/lib/x86_64-linux-gnu/libssl.so
[00:01:13] [pr release]   -- OPENSSL_VERSION:        3.0.13
[00:01:13] [pr release]   -- Configuring done (0.3s)
[00:01:13] [pr release]   -- Generating done (0.0s)
[00:01:13] [pr release]   -- Build files have been written to: /runner/runtime/artifacts/obj/native/net11.0-linux-Release-x64
[00:01:13] [pr release]   /runner/runtime/artifacts/obj/native/net11.0-linux-Release-x64 /runner/runtime/src/native/libs
[00:01:13] [pr release]   Executing /usr/bin/ninja -j 32 install
[00:01:13] [pr release]   [0/1] Install the project...
[00:01:13] [pr release]   -- Install configuration: "RELEASE"
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Compression.Native.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Compression.Native.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libbrotlienc.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libbrotlidec.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libbrotlicommon.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libzstd.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libz.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Compression.Native.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Ports.Native.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Ports.Native.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.IO.Ports.Native.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Native.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Native.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Native.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Globalization.Native.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Globalization.Native.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Globalization.Native.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Net.Security.Native.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Net.Security.Native.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Net.Security.Native.a
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Security.Cryptography.Native.OpenSsl.so.dbg
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Security.Cryptography.Native.OpenSsl.so
[00:01:13] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/native/net11.0-linux-Release-x64/./libSystem.Security.Cryptography.Native.OpenSsl.a
[00:01:13] [pr release]   /runner/runtime/src/native/libs
[00:01:16] [pr release]   Microsoft.Extensions.Logging.Generators.Roslyn4.4 -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Generators.Roslyn4.4/Release/netstandard2.0/Microsoft.Extensions.Logging.Generators.dll
[00:01:17] [pr release]   JSImportGenerator -> /runner/runtime/artifacts/bin/JSImportGenerator/Release/netstandard2.0/Microsoft.Interop.JavaScript.JSImportGenerator.dll
[00:01:17] [pr release]   ComInterfaceGenerator -> /runner/runtime/artifacts/bin/ComInterfaceGenerator/Release/netstandard2.0/Microsoft.Interop.ComInterfaceGenerator.dll
[00:01:18] [pr release]   Microsoft.Extensions.Options.SourceGeneration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options.SourceGeneration/Release/netstandard2.0/Microsoft.Extensions.Options.SourceGeneration.dll
[00:01:18] [pr release]   System.Text.Json.SourceGeneration.Roslyn4.4 -> /runner/runtime/artifacts/bin/System.Text.Json.SourceGeneration.Roslyn4.4/Release/netstandard2.0/System.Text.Json.SourceGeneration.dll
[00:01:18] [pr release]   System.Text.RegularExpressions.Generator -> /runner/runtime/artifacts/bin/System.Text.RegularExpressions.Generator/Release/netstandard2.0/System.Text.RegularExpressions.Generator.dll
[00:01:19] [pr release]   System.Private.Uri -> /runner/runtime/artifacts/bin/System.Private.Uri/Release/net11.0/System.Private.Uri.dll
[00:01:19] [pr release]   System.Runtime -> /runner/runtime/artifacts/bin/System.Runtime/ref/Release/net11.0/System.Runtime.dll
[00:01:19] [pr release]   System.Text.Encoding.Extensions -> /runner/runtime/artifacts/bin/System.Text.Encoding.Extensions/ref/Release/net11.0/System.Text.Encoding.Extensions.dll
[00:01:19] [pr release]   System.Reflection.Primitives -> /runner/runtime/artifacts/bin/System.Reflection.Primitives/ref/Release/net11.0/System.Reflection.Primitives.dll
[00:01:19] [pr release]   System.Numerics.Vectors -> /runner/runtime/artifacts/bin/System.Numerics.Vectors/ref/Release/net11.0/System.Numerics.Vectors.dll
[00:01:19] [pr release]   System.Runtime.Loader -> /runner/runtime/artifacts/bin/System.Runtime.Loader/ref/Release/net11.0/System.Runtime.Loader.dll
[00:01:19] [pr release]   System.Diagnostics.Tracing -> /runner/runtime/artifacts/bin/System.Diagnostics.Tracing/ref/Release/net11.0/System.Diagnostics.Tracing.dll
[00:01:19] [pr release]   System.Memory -> /runner/runtime/artifacts/bin/System.Memory/ref/Release/net11.0/System.Memory.dll
[00:01:19] [pr release]   System.Collections -> /runner/runtime/artifacts/bin/System.Collections/ref/Release/net11.0/System.Collections.dll
[00:01:19] [pr release]   System.Diagnostics.StackTrace -> /runner/runtime/artifacts/bin/System.Diagnostics.StackTrace/ref/Release/net11.0/System.Diagnostics.StackTrace.dll
[00:01:19] [pr release]   System.Threading.Overlapped -> /runner/runtime/artifacts/bin/System.Threading.Overlapped/ref/Release/net11.0/System.Threading.Overlapped.dll
[00:01:19] [pr release]   System.Runtime.Loader -> /runner/runtime/artifacts/bin/System.Runtime.Loader/Release/net11.0/System.Runtime.Loader.dll
[00:01:19] [pr release]   System.Threading -> /runner/runtime/artifacts/bin/System.Threading/ref/Release/net11.0/System.Threading.dll
[00:01:19] [pr release]   System.Text.Encoding.Extensions -> /runner/runtime/artifacts/bin/System.Text.Encoding.Extensions/Release/net11.0/System.Text.Encoding.Extensions.dll
[00:01:19] [pr release]   Microsoft.Win32.Primitives -> /runner/runtime/artifacts/bin/Microsoft.Win32.Primitives/ref/Release/net11.0/Microsoft.Win32.Primitives.dll
[00:01:19] [pr release]   System.Runtime -> /runner/runtime/artifacts/bin/System.Runtime/Release/net11.0/System.Runtime.dll
[00:01:19] [pr release]   System.Reflection.Primitives -> /runner/runtime/artifacts/bin/System.Reflection.Primitives/Release/net11.0/System.Reflection.Primitives.dll
[00:01:19] [pr release]   System.Numerics.Vectors -> /runner/runtime/artifacts/bin/System.Numerics.Vectors/Release/net11.0/System.Numerics.Vectors.dll
[00:01:19] [pr release]   System.Runtime.Intrinsics -> /runner/runtime/artifacts/bin/System.Runtime.Intrinsics/ref/Release/net11.0/System.Runtime.Intrinsics.dll
[00:01:19] [pr release]   System.Runtime.InteropServices -> /runner/runtime/artifacts/bin/System.Runtime.InteropServices/ref/Release/net11.0/System.Runtime.InteropServices.dll
[00:01:19] [pr release]   System.Threading.ThreadPool -> /runner/runtime/artifacts/bin/System.Threading.ThreadPool/ref/Release/net11.0/System.Threading.ThreadPool.dll
[00:01:19] [pr release]   System.Diagnostics.Tracing -> /runner/runtime/artifacts/bin/System.Diagnostics.Tracing/Release/net11.0/System.Diagnostics.Tracing.dll
[00:01:19] [pr release]   System.Threading -> /runner/runtime/artifacts/bin/System.Threading/Release/net11.0/System.Threading.dll
[00:01:19] [pr release]   System.Threading.ThreadPool -> /runner/runtime/artifacts/bin/System.Threading.ThreadPool/Release/net11.0/System.Threading.ThreadPool.dll
[00:01:19] [pr release]   Microsoft.Win32.Primitives -> /runner/runtime/artifacts/bin/Microsoft.Win32.Primitives/Release/net11.0/Microsoft.Win32.Primitives.dll
[00:01:19] [pr release]   System.Memory -> /runner/runtime/artifacts/bin/System.Memory/Release/net11.0/System.Memory.dll
[00:01:19] [pr release]   System.Runtime.Intrinsics -> /runner/runtime/artifacts/bin/System.Runtime.Intrinsics/Release/net11.0/System.Runtime.Intrinsics.dll
[00:01:19] [pr release]   System.ComponentModel -> /runner/runtime/artifacts/bin/System.ComponentModel/ref/Release/net11.0/System.ComponentModel.dll
[00:01:19] [pr release]   System.Threading.Thread -> /runner/runtime/artifacts/bin/System.Threading.Thread/ref/Release/net11.0/System.Threading.Thread.dll
[00:01:20] [pr release]   System.ComponentModel -> /runner/runtime/artifacts/bin/System.ComponentModel/Release/net11.0/System.ComponentModel.dll
[00:01:20] [pr release]   System.Reflection.Emit.ILGeneration -> /runner/runtime/artifacts/bin/System.Reflection.Emit.ILGeneration/ref/Release/net11.0/System.Reflection.Emit.ILGeneration.dll
[00:01:20] [pr release]   System.Reflection.Emit.Lightweight -> /runner/runtime/artifacts/bin/System.Reflection.Emit.Lightweight/ref/Release/net11.0/System.Reflection.Emit.Lightweight.dll
[00:01:20] [pr release]   System.Runtime.Numerics -> /runner/runtime/artifacts/bin/System.Runtime.Numerics/ref/Release/net11.0/System.Runtime.Numerics.dll
[00:01:20] [pr release]   System.Threading.Thread -> /runner/runtime/artifacts/bin/System.Threading.Thread/Release/net11.0/System.Threading.Thread.dll
[00:01:20] [pr release]   System.Reflection.Emit.Lightweight -> /runner/runtime/artifacts/bin/System.Reflection.Emit.Lightweight/Release/net11.0/System.Reflection.Emit.Lightweight.dll
[00:01:20] [pr release]   System.Collections.NonGeneric -> /runner/runtime/artifacts/bin/System.Collections.NonGeneric/ref/Release/net11.0/System.Collections.NonGeneric.dll
[00:01:20] [pr release]   System.Text.Encodings.Web -> /runner/runtime/artifacts/bin/System.Text.Encodings.Web/ref/Release/net11.0/System.Text.Encodings.Web.dll
[00:01:20] [pr release]   System.Reflection.Emit.ILGeneration -> /runner/runtime/artifacts/bin/System.Reflection.Emit.ILGeneration/Release/net11.0/System.Reflection.Emit.ILGeneration.dll
[00:01:20] [pr release]   System.Runtime.Numerics -> /runner/runtime/artifacts/bin/System.Runtime.Numerics/Release/net11.0/System.Runtime.Numerics.dll
[00:01:20] [pr release]   System.Text.Encodings.Web -> /runner/runtime/artifacts/bin/System.Text.Encodings.Web/Release/net11.0/System.Text.Encodings.Web.dll
[00:01:20] [pr release]   System.Collections.NonGeneric -> /runner/runtime/artifacts/bin/System.Collections.NonGeneric/Release/net11.0/System.Collections.NonGeneric.dll
[00:01:22] [pr release]   System.Collections -> /runner/runtime/artifacts/bin/System.Collections/Release/net11.0/System.Collections.dll
[00:01:22] [pr release]   System.Threading.Overlapped -> /runner/runtime/artifacts/bin/System.Threading.Overlapped/Release/net11.0/System.Threading.Overlapped.dll
[00:01:22] [pr release]   System.Security.Claims -> /runner/runtime/artifacts/bin/System.Security.Claims/ref/Release/net11.0/System.Security.Claims.dll
[00:01:22] [pr release]   System.IO.Pipelines -> /runner/runtime/artifacts/bin/System.IO.Pipelines/ref/Release/net11.0/System.IO.Pipelines.dll
[00:01:22] [pr release]   System.Collections.Concurrent -> /runner/runtime/artifacts/bin/System.Collections.Concurrent/ref/Release/net11.0/System.Collections.Concurrent.dll
[00:01:22] [pr release]   System.ObjectModel -> /runner/runtime/artifacts/bin/System.ObjectModel/ref/Release/net11.0/System.ObjectModel.dll
[00:01:22] [pr release]   System.Security.Claims -> /runner/runtime/artifacts/bin/System.Security.Claims/Release/net11.0/System.Security.Claims.dll
[00:01:22] [pr release]   System.IO.Pipelines -> /runner/runtime/artifacts/bin/System.IO.Pipelines/Release/net11.0/System.IO.Pipelines.dll
[00:01:23] [pr release]   System.Collections.Concurrent -> /runner/runtime/artifacts/bin/System.Collections.Concurrent/Release/net11.0/System.Collections.Concurrent.dll
[00:01:23] [pr release]   System.ObjectModel -> /runner/runtime/artifacts/bin/System.ObjectModel/Release/net11.0/System.ObjectModel.dll
[00:01:23] [pr release]   System.Threading.Channels -> /runner/runtime/artifacts/bin/System.Threading.Channels/ref/Release/net11.0/System.Threading.Channels.dll
[00:01:23] [pr release]   System.Runtime.Serialization.Formatters -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Formatters/ref/Release/net11.0/System.Runtime.Serialization.Formatters.dll
[00:01:23] [pr release]   System.Threading.Channels -> /runner/runtime/artifacts/bin/System.Threading.Channels/Release/net11.0/System.Threading.Channels.dll
[00:01:23] [pr release]   System.ComponentModel.Primitives -> /runner/runtime/artifacts/bin/System.ComponentModel.Primitives/ref/Release/net11.0/System.ComponentModel.Primitives.dll
[00:01:23] [pr release]   System.ComponentModel.Primitives -> /runner/runtime/artifacts/bin/System.ComponentModel.Primitives/Release/net11.0/System.ComponentModel.Primitives.dll
[00:01:23] [pr release]   System.ComponentModel.EventBasedAsync -> /runner/runtime/artifacts/bin/System.ComponentModel.EventBasedAsync/ref/Release/net11.0/System.ComponentModel.EventBasedAsync.dll
[00:01:23] [pr release]   System.Collections.Specialized -> /runner/runtime/artifacts/bin/System.Collections.Specialized/ref/Release/net11.0/System.Collections.Specialized.dll
[00:01:23] [pr release]   System.Collections.Specialized -> /runner/runtime/artifacts/bin/System.Collections.Specialized/Release/net11.0/System.Collections.Specialized.dll
[00:01:23] [pr release]   System.ComponentModel.EventBasedAsync -> /runner/runtime/artifacts/bin/System.ComponentModel.EventBasedAsync/Release/net11.0/System.ComponentModel.EventBasedAsync.dll
[00:01:23] [pr release]   System.Web.HttpUtility -> /runner/runtime/artifacts/bin/System.Web.HttpUtility/ref/Release/net11.0/System.Web.HttpUtility.dll
[00:01:23] [pr release]   System.Diagnostics.TraceSource -> /runner/runtime/artifacts/bin/System.Diagnostics.TraceSource/ref/Release/net11.0/System.Diagnostics.TraceSource.dll
[00:01:23] [pr release]   System.Web.HttpUtility -> /runner/runtime/artifacts/bin/System.Web.HttpUtility/Release/net11.0/System.Web.HttpUtility.dll
[00:01:23] [pr release]   System.Net.WebHeaderCollection -> /runner/runtime/artifacts/bin/System.Net.WebHeaderCollection/ref/Release/net11.0/System.Net.WebHeaderCollection.dll
[00:01:24] [pr release]   System.Net.WebHeaderCollection -> /runner/runtime/artifacts/bin/System.Net.WebHeaderCollection/Release/net11.0/System.Net.WebHeaderCollection.dll
[00:01:25] [pr release]   System.Runtime.InteropServices -> /runner/runtime/artifacts/bin/System.Runtime.InteropServices/Release/net11.0/System.Runtime.InteropServices.dll
[00:01:26] [pr release]   System.Diagnostics.TraceSource -> /runner/runtime/artifacts/bin/System.Diagnostics.TraceSource/Release/net11.0/System.Diagnostics.TraceSource.dll
[00:01:26] [pr release]   System.Runtime.InteropServices.JavaScript -> /runner/runtime/artifacts/bin/System.Runtime.InteropServices.JavaScript/ref/Release/net11.0/System.Runtime.InteropServices.JavaScript.dll
[00:01:26] [pr release]   System.Text.Encoding.CodePages -> /runner/runtime/artifacts/bin/System.Text.Encoding.CodePages/ref/Release/net11.0/System.Text.Encoding.CodePages.dll
[00:01:26] [pr release]   System.Net.ServerSentEvents -> /runner/runtime/artifacts/bin/System.Net.ServerSentEvents/ref/Release/net11.0/System.Net.ServerSentEvents.dll
[00:01:26] [pr release]   System.IO.Compression -> /runner/runtime/artifacts/bin/System.IO.Compression/ref/Release/net11.0/System.IO.Compression.dll
[00:01:26] [pr release]   System.Drawing.Primitives -> /runner/runtime/artifacts/bin/System.Drawing.Primitives/ref/Release/net11.0/System.Drawing.Primitives.dll
[00:01:26] [pr release]   System.Security.Principal.Windows -> /runner/runtime/artifacts/bin/System.Security.Principal.Windows/ref/Release/net11.0/System.Security.Principal.Windows.dll
[00:01:26] [pr release]   System.Linq -> /runner/runtime/artifacts/bin/System.Linq/ref/Release/net11.0/System.Linq.dll
[00:01:26] [pr release]   System.Net.Primitives -> /runner/runtime/artifacts/bin/System.Net.Primitives/ref/Release/net11.0/System.Net.Primitives.dll
[00:01:26] [pr release]   System.Formats.Asn1 -> /runner/runtime/artifacts/bin/System.Formats.Asn1/ref/Release/net11.0/System.Formats.Asn1.dll
[00:01:26] [pr release]   System.IO.MemoryMappedFiles -> /runner/runtime/artifacts/bin/System.IO.MemoryMappedFiles/ref/Release/net11.0/System.IO.MemoryMappedFiles.dll
[00:01:26] [pr release]   System.Runtime.InteropServices.JavaScript -> /runner/runtime/artifacts/bin/System.Runtime.InteropServices.JavaScript/Release/net11.0/System.Runtime.InteropServices.JavaScript.dll
[00:01:26] [pr release]   System.Net.Primitives -> /runner/runtime/artifacts/bin/System.Net.Primitives/Release/net11.0/System.Net.Primitives.dll
[00:01:26] [pr release]   System.Formats.Asn1 -> /runner/runtime/artifacts/bin/System.Formats.Asn1/Release/net11.0/System.Formats.Asn1.dll
[00:01:26] [pr release]   System.IO.Compression -> /runner/runtime/artifacts/bin/System.IO.Compression/Release/net11.0/System.IO.Compression.dll
[00:01:26] [pr release]   Microsoft.Extensions.Primitives -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Primitives/ref/Release/net11.0/Microsoft.Extensions.Primitives.dll
[00:01:26] [pr release]   System.Security.Principal.Windows -> /runner/runtime/artifacts/bin/System.Security.Principal.Windows/Release/net11.0/System.Security.Principal.Windows.dll
[00:01:26] [pr release]   System.Text.Encoding.CodePages -> /runner/runtime/artifacts/bin/System.Text.Encoding.CodePages/Release/net11.0/System.Text.Encoding.CodePages.dll
[00:01:26] [pr release]   System.IO.MemoryMappedFiles -> /runner/runtime/artifacts/bin/System.IO.MemoryMappedFiles/Release/net11.0/System.IO.MemoryMappedFiles.dll
[00:01:26] [pr release]   System.Drawing.Primitives -> /runner/runtime/artifacts/bin/System.Drawing.Primitives/Release/net11.0/System.Drawing.Primitives.dll
[00:01:26] [pr release]   System.IO.Compression.Brotli -> /runner/runtime/artifacts/bin/System.IO.Compression.Brotli/ref/Release/net11.0/System.IO.Compression.Brotli.dll
[00:01:26] [pr release]   System.Security.AccessControl -> /runner/runtime/artifacts/bin/System.Security.AccessControl/ref/Release/net11.0/System.Security.AccessControl.dll
[00:01:26] [pr release]   Microsoft.Extensions.Primitives -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Primitives/Release/net11.0/Microsoft.Extensions.Primitives.dll
[00:01:26] [pr release]   System.IO.Compression.ZipFile -> /runner/runtime/artifacts/bin/System.IO.Compression.ZipFile/ref/Release/net11.0/System.IO.Compression.ZipFile.dll
[00:01:26] [pr release]   System.IO.Compression.Brotli -> /runner/runtime/artifacts/bin/System.IO.Compression.Brotli/Release/net11.0/System.IO.Compression.Brotli.dll
[00:01:26] [pr release]   System.Security.AccessControl -> /runner/runtime/artifacts/bin/System.Security.AccessControl/Release/net11.0/System.Security.AccessControl.dll
[00:01:26] [pr release]   System.IO.Compression.ZipFile -> /runner/runtime/artifacts/bin/System.IO.Compression.ZipFile/Release/net11.0/System.IO.Compression.ZipFile.dll
[00:01:26] [pr release]   System.IO.Pipes -> /runner/runtime/artifacts/bin/System.IO.Pipes/ref/Release/net11.0/System.IO.Pipes.dll
[00:01:26] [pr release]   System.IO.FileSystem.AccessControl -> /runner/runtime/artifacts/bin/System.IO.FileSystem.AccessControl/ref/Release/net11.0/System.IO.FileSystem.AccessControl.dll
[00:01:26] [pr release]   System.Threading.AccessControl -> /runner/runtime/artifacts/bin/System.Threading.AccessControl/ref/Release/net11.0/System.Threading.AccessControl.dll
[00:01:26] [pr release]   Microsoft.Win32.Registry -> /runner/runtime/artifacts/bin/Microsoft.Win32.Registry/ref/Release/net11.0/Microsoft.Win32.Registry.dll
[00:01:26] [pr release]   System.IO.Pipes -> /runner/runtime/artifacts/bin/System.IO.Pipes/Release/net11.0/System.IO.Pipes.dll
[00:01:26] [pr release]   System.IO.FileSystem.AccessControl -> /runner/runtime/artifacts/bin/System.IO.FileSystem.AccessControl/Release/net11.0/System.IO.FileSystem.AccessControl.dll
[00:01:26] [pr release]   Microsoft.Win32.Registry -> /runner/runtime/artifacts/bin/Microsoft.Win32.Registry/Release/net11.0/Microsoft.Win32.Registry.dll
[00:01:26] [pr release]   System.Threading.AccessControl -> /runner/runtime/artifacts/bin/System.Threading.AccessControl/Release/net11.0/System.Threading.AccessControl.dll
[00:01:26] [pr release]   System.IO.Pipes.AccessControl -> /runner/runtime/artifacts/bin/System.IO.Pipes.AccessControl/ref/Release/net11.0/System.IO.Pipes.AccessControl.dll
[00:01:26] [pr release]   System.IO.Pipes.AccessControl -> /runner/runtime/artifacts/bin/System.IO.Pipes.AccessControl/Release/net11.0/System.IO.Pipes.AccessControl.dll
[00:01:27] [pr release]   System.Runtime.Serialization.Formatters -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Formatters/Release/net11.0/System.Runtime.Serialization.Formatters.dll
[00:01:27] [pr release]   System.Net.ServerSentEvents -> /runner/runtime/artifacts/bin/System.Net.ServerSentEvents/Release/net11.0/System.Net.ServerSentEvents.dll
[00:01:28] [pr release]   System.Linq -> /runner/runtime/artifacts/bin/System.Linq/Release/net11.0/System.Linq.dll
[00:01:28] [pr release]   System.Threading.Tasks.Dataflow -> /runner/runtime/artifacts/bin/System.Threading.Tasks.Dataflow/ref/Release/net11.0/System.Threading.Tasks.Dataflow.dll
[00:01:28] [pr release]   System.Diagnostics.DiagnosticSource -> /runner/runtime/artifacts/bin/System.Diagnostics.DiagnosticSource/ref/Release/net11.0/System.Diagnostics.DiagnosticSource.dll
[00:01:28] [pr release]   Microsoft.Extensions.Configuration.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Abstractions/ref/Release/net11.0/Microsoft.Extensions.Configuration.Abstractions.dll
[00:01:28] [pr release]   Microsoft.Extensions.FileProviders.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Abstractions/ref/Release/net11.0/Microsoft.Extensions.FileProviders.Abstractions.dll
[00:01:28] [pr release]   System.Collections.Immutable -> /runner/runtime/artifacts/bin/System.Collections.Immutable/ref/Release/net11.0/System.Collections.Immutable.dll
[00:01:28] [pr release]   System.Linq.AsyncEnumerable -> /runner/runtime/artifacts/bin/System.Linq.AsyncEnumerable/ref/Release/net11.0/System.Linq.AsyncEnumerable.dll
[00:01:28] [pr release]   System.Threading.Tasks.Dataflow -> /runner/runtime/artifacts/bin/System.Threading.Tasks.Dataflow/Release/net11.0/System.Threading.Tasks.Dataflow.dll
[00:01:28] [pr release]   Microsoft.Extensions.Caching.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Caching.Abstractions/ref/Release/net11.0/Microsoft.Extensions.Caching.Abstractions.dll
[00:01:28] [pr release]   System.Diagnostics.DiagnosticSource -> /runner/runtime/artifacts/bin/System.Diagnostics.DiagnosticSource/Release/net11.0/System.Diagnostics.DiagnosticSource.dll
[00:01:28] [pr release]   Microsoft.Extensions.Configuration.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Abstractions/Release/net11.0/Microsoft.Extensions.Configuration.Abstractions.dll
[00:01:28] [pr release]   System.Linq.AsyncEnumerable -> /runner/runtime/artifacts/bin/System.Linq.AsyncEnumerable/Release/net11.0/System.Linq.AsyncEnumerable.dll
[00:01:28] [pr release]   Microsoft.Extensions.FileProviders.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Abstractions/Release/net11.0/Microsoft.Extensions.FileProviders.Abstractions.dll
[00:01:28] [pr release]   Microsoft.Extensions.Caching.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Caching.Abstractions/Release/net11.0/Microsoft.Extensions.Caching.Abstractions.dll
[00:01:28] [pr release]   System.Net.NameResolution -> /runner/runtime/artifacts/bin/System.Net.NameResolution/ref/Release/net11.0/System.Net.NameResolution.dll
[00:01:28] [pr release]   System.Net.NameResolution -> /runner/runtime/artifacts/bin/System.Net.NameResolution/Release/net11.0/System.Net.NameResolution.dll
[00:01:28] [pr release]   System.Net.Sockets -> /runner/runtime/artifacts/bin/System.Net.Sockets/ref/Release/net11.0/System.Net.Sockets.dll
[00:01:28] [pr release]   System.Net.Sockets -> /runner/runtime/artifacts/bin/System.Net.Sockets/Release/net11.0/System.Net.Sockets.dll
[00:01:28] [pr release]   System.Net.NetworkInformation -> /runner/runtime/artifacts/bin/System.Net.NetworkInformation/ref/Release/net11.0/System.Net.NetworkInformation.dll
[00:01:28] [pr release]   System.Net.NetworkInformation -> /runner/runtime/artifacts/bin/System.Net.NetworkInformation/Release/net11.0/System.Net.NetworkInformation.dll
[00:01:29] [pr release]   System.Collections.Immutable -> /runner/runtime/artifacts/bin/System.Collections.Immutable/Release/net11.0/System.Collections.Immutable.dll
[00:01:29] [pr release]   System.Reflection.Metadata -> /runner/runtime/artifacts/bin/System.Reflection.Metadata/ref/Release/net11.0/System.Reflection.Metadata.dll
[00:01:31] [pr release]   System.Reflection.Metadata -> /runner/runtime/artifacts/bin/System.Reflection.Metadata/Release/net11.0/System.Reflection.Metadata.dll
[00:01:32] [pr release]   System.Diagnostics.StackTrace -> /runner/runtime/artifacts/bin/System.Diagnostics.StackTrace/Release/net11.0/System.Diagnostics.StackTrace.dll
[00:01:32] [pr release]   System.Reflection.Emit -> /runner/runtime/artifacts/bin/System.Reflection.Emit/ref/Release/net11.0/System.Reflection.Emit.dll
[00:01:32] [pr release]   System.Security.Cryptography -> /runner/runtime/artifacts/bin/System.Security.Cryptography/ref/Release/net11.0/System.Security.Cryptography.dll
[00:01:32] [pr release]   System.Security.Cryptography -> /runner/runtime/artifacts/bin/System.Security.Cryptography/Release/net11.0/System.Security.Cryptography.dll
[00:01:32] [pr release]   System.Net.WebSockets -> /runner/runtime/artifacts/bin/System.Net.WebSockets/ref/Release/net11.0/System.Net.WebSockets.dll
[00:01:32] [pr release]   System.Net.Security -> /runner/runtime/artifacts/bin/System.Net.Security/ref/Release/net11.0/System.Net.Security.dll
[00:01:33] [pr release]   System.Reflection.Emit -> /runner/runtime/artifacts/bin/System.Reflection.Emit/Release/net11.0/System.Reflection.Emit.dll
[00:01:33] [pr release]   System.Net.WebSockets -> /runner/runtime/artifacts/bin/System.Net.WebSockets/Release/net11.0/System.Net.WebSockets.dll
[00:01:33] [pr release]   System.Linq.Expressions -> /runner/runtime/artifacts/bin/System.Linq.Expressions/ref/Release/net11.0/System.Linq.Expressions.dll
[00:01:33] [pr release]   System.Net.Security -> /runner/runtime/artifacts/bin/System.Net.Security/Release/net11.0/System.Net.Security.dll
[00:01:33] [pr release]   System.Text.RegularExpressions -> /runner/runtime/artifacts/bin/System.Text.RegularExpressions/ref/Release/net11.0/System.Text.RegularExpressions.dll
[00:01:33] [pr release]   System.Net.Quic -> /runner/runtime/artifacts/bin/System.Net.Quic/ref/Release/net11.0/System.Net.Quic.dll
[00:01:33] [pr release]   System.Net.Quic -> /runner/runtime/artifacts/bin/System.Net.Quic/Release/net11.0/System.Net.Quic.dll
[00:01:33] [pr release]   System.Text.RegularExpressions -> /runner/runtime/artifacts/bin/System.Text.RegularExpressions/Release/net11.0/System.Text.RegularExpressions.dll
[00:01:33] [pr release]   System.Net.Http -> /runner/runtime/artifacts/bin/System.Net.Http/ref/Release/net11.0/System.Net.Http.dll
[00:01:33] [pr release]   System.Text.Json.SourceGeneration.Roslyn4.0 -> /runner/runtime/artifacts/bin/System.Text.Json.SourceGeneration.Roslyn4.0/Release/netstandard2.0/System.Text.Json.SourceGeneration.dll
[00:01:33] [pr release]   System.Net.WebProxy -> /runner/runtime/artifacts/bin/System.Net.WebProxy/ref/Release/net11.0/System.Net.WebProxy.dll
[00:01:33] [pr release]   System.Text.Json.SourceGeneration.Roslyn3.11 -> /runner/runtime/artifacts/bin/System.Text.Json.SourceGeneration.Roslyn3.11/Release/netstandard2.0/System.Text.Json.SourceGeneration.dll
[00:01:33] [pr release]   System.Net.WebProxy -> /runner/runtime/artifacts/bin/System.Net.WebProxy/Release/net11.0/System.Net.WebProxy.dll
[00:01:34] [pr release]   System.Net.Http -> /runner/runtime/artifacts/bin/System.Net.Http/Release/net11.0/System.Net.Http.dll
[00:01:34] [pr release]   System.Net.WebSockets.Client -> /runner/runtime/artifacts/bin/System.Net.WebSockets.Client/ref/Release/net11.0/System.Net.WebSockets.Client.dll
[00:01:34] [pr release]   System.Net.Requests -> /runner/runtime/artifacts/bin/System.Net.Requests/ref/Release/net11.0/System.Net.Requests.dll
[00:01:34] [pr release]   System.Net.WebSockets.Client -> /runner/runtime/artifacts/bin/System.Net.WebSockets.Client/Release/net11.0/System.Net.WebSockets.Client.dll
[00:01:34] [pr release]   System.Net.Requests -> /runner/runtime/artifacts/bin/System.Net.Requests/Release/net11.0/System.Net.Requests.dll
[00:01:34] [pr release]   System.Net.WebClient -> /runner/runtime/artifacts/bin/System.Net.WebClient/ref/Release/net11.0/System.Net.WebClient.dll
[00:01:34] [pr release]   System.Text.Json.SourceGeneration.Roslyn4.4 -> /runner/runtime/artifacts/bin/System.Text.Json.SourceGeneration.Roslyn4.4/Release/net11.0/System.Text.Json.SourceGeneration.dll
[00:01:34] [pr release]   System.Text.Json -> /runner/runtime/artifacts/bin/System.Text.Json/ref/Release/net11.0/System.Text.Json.dll
[00:01:35] [pr release]   System.Net.WebClient -> /runner/runtime/artifacts/bin/System.Net.WebClient/Release/net11.0/System.Net.WebClient.dll
[00:01:35] [pr release]   System.Linq.Expressions -> /runner/runtime/artifacts/bin/System.Linq.Expressions/Release/net11.0/System.Linq.Expressions.dll
[00:01:35] [pr release]   Microsoft.CSharp -> /runner/runtime/artifacts/bin/Microsoft.CSharp/ref/Release/net11.0/Microsoft.CSharp.dll
[00:01:35] [pr release]   Microsoft.Extensions.DependencyInjection.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyInjection.Abstractions/ref/Release/net11.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
[00:01:35] [pr release]   System.Text.Json -> /runner/runtime/artifacts/bin/System.Text.Json/Release/net11.0/System.Text.Json.dll
[00:01:35] [pr release]   Microsoft.Extensions.DependencyInjection.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyInjection.Abstractions/Release/net11.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
[00:01:35] [pr release]   System.Console -> /runner/runtime/artifacts/bin/System.Console/ref/Release/net11.0/System.Console.dll
[00:01:35] [pr release]   System.IO.FileSystem.DriveInfo -> /runner/runtime/artifacts/bin/System.IO.FileSystem.DriveInfo/ref/Release/net11.0/System.IO.FileSystem.DriveInfo.dll
[00:01:35] [pr release]   System.Net.Http.Json -> /runner/runtime/artifacts/bin/System.Net.Http.Json/ref/Release/net11.0/System.Net.Http.Json.dll
[00:01:35] [pr release]   Microsoft.Extensions.Logging.Generators.Roslyn3.11 -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Generators.Roslyn3.11/Release/netstandard2.0/Microsoft.Extensions.Logging.Generators.dll
[00:01:35] [pr release]   System.IO.FileSystem.DriveInfo -> /runner/runtime/artifacts/bin/System.IO.FileSystem.DriveInfo/Release/net11.0/System.IO.FileSystem.DriveInfo.dll
[00:01:35] [pr release]   System.Console -> /runner/runtime/artifacts/bin/System.Console/Release/net11.0/System.Console.dll
[00:01:35] [pr release]   Microsoft.Extensions.Logging.Generators.Roslyn4.0 -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Generators.Roslyn4.0/Release/netstandard2.0/Microsoft.Extensions.Logging.Generators.dll
[00:01:35] [pr release]   System.Net.Http.Json -> /runner/runtime/artifacts/bin/System.Net.Http.Json/Release/net11.0/System.Net.Http.Json.dll
[00:01:35] [pr release]   System.Diagnostics.FileVersionInfo -> /runner/runtime/artifacts/bin/System.Diagnostics.FileVersionInfo/ref/Release/net11.0/System.Diagnostics.FileVersionInfo.dll
[00:01:37] [pr release]   Microsoft.CSharp -> /runner/runtime/artifacts/bin/Microsoft.CSharp/Release/net11.0/Microsoft.CSharp.dll
[00:01:39] [pr release]   System.Private.Xml -> /runner/runtime/artifacts/bin/System.Private.Xml/Release/net11.0/System.Private.Xml.dll
[00:01:39] [pr release]   System.Diagnostics.FileVersionInfo -> /runner/runtime/artifacts/bin/System.Diagnostics.FileVersionInfo/Release/net11.0/System.Diagnostics.FileVersionInfo.dll
[00:01:39] [pr release]   Microsoft.Extensions.Logging.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Abstractions/ref/Release/net11.0/Microsoft.Extensions.Logging.Abstractions.dll
[00:01:39] [pr release]   System.Diagnostics.Process -> /runner/runtime/artifacts/bin/System.Diagnostics.Process/ref/Release/net11.0/System.Diagnostics.Process.dll
[00:01:39] [pr release]   System.Xml.ReaderWriter -> /runner/runtime/artifacts/bin/System.Xml.ReaderWriter/ref/Release/net11.0/System.Xml.ReaderWriter.dll
[00:01:39] [pr release]   Microsoft.Extensions.Logging.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Abstractions/Release/net11.0/Microsoft.Extensions.Logging.Abstractions.dll
[00:01:39] [pr release]   System.Diagnostics.Process -> /runner/runtime/artifacts/bin/System.Diagnostics.Process/Release/net11.0/System.Diagnostics.Process.dll
[00:01:39] [pr release]   System.Resources.Writer -> /runner/runtime/artifacts/bin/System.Resources.Writer/ref/Release/net11.0/System.Resources.Writer.dll
[00:01:39] [pr release]   Microsoft.VisualBasic.Core -> /runner/runtime/artifacts/bin/Microsoft.VisualBasic.Core/ref/Release/net11.0/Microsoft.VisualBasic.Core.dll
[00:01:39] [pr release]   Microsoft.VisualBasic.Core -> /runner/runtime/artifacts/bin/Microsoft.VisualBasic.Core/Release/net11.0/Microsoft.VisualBasic.Core.dll
[00:01:40] [pr release]   System.Xml.ReaderWriter -> /runner/runtime/artifacts/bin/System.Xml.ReaderWriter/Release/net11.0/System.Xml.ReaderWriter.dll
[00:01:40] [pr release]   System.Transactions.Local -> /runner/runtime/artifacts/bin/System.Transactions.Local/ref/Release/net11.0/System.Transactions.Local.dll
[00:01:40] [pr release]   System.Private.Xml.Linq -> /runner/runtime/artifacts/bin/System.Private.Xml.Linq/Release/net11.0/System.Private.Xml.Linq.dll
[00:01:40] [pr release]   System.Resources.Writer -> /runner/runtime/artifacts/bin/System.Resources.Writer/Release/net11.0/System.Resources.Writer.dll
[00:01:40] [pr release]   System.Xml.XDocument -> /runner/runtime/artifacts/bin/System.Xml.XDocument/ref/Release/net11.0/System.Xml.XDocument.dll
[00:01:40] [pr release]   System.Transactions.Local -> /runner/runtime/artifacts/bin/System.Transactions.Local/Release/net11.0/System.Transactions.Local.dll
[00:01:41] [pr release]   System.Xml.XDocument -> /runner/runtime/artifacts/bin/System.Xml.XDocument/Release/net11.0/System.Xml.XDocument.dll
[00:01:41] [pr release]   System.ComponentModel.TypeConverter -> /runner/runtime/artifacts/bin/System.ComponentModel.TypeConverter/ref/Release/net11.0/System.ComponentModel.TypeConverter.dll
[00:01:43] [pr release]   System.ComponentModel.TypeConverter -> /runner/runtime/artifacts/bin/System.ComponentModel.TypeConverter/Release/net11.0/System.ComponentModel.TypeConverter.dll
[00:01:43] [pr release]   System.ComponentModel.Annotations -> /runner/runtime/artifacts/bin/System.ComponentModel.Annotations/ref/Release/net11.0/System.ComponentModel.Annotations.dll
[00:01:43] [pr release]   System.ComponentModel.Annotations -> /runner/runtime/artifacts/bin/System.ComponentModel.Annotations/Release/net11.0/System.ComponentModel.Annotations.dll
[00:01:43] [pr release]   Microsoft.Extensions.Options -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options/ref/Release/net11.0/Microsoft.Extensions.Options.dll
[00:01:43] [pr release]   Microsoft.Extensions.Options -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options/Release/net11.0/Microsoft.Extensions.Options.dll
[00:01:43] [pr release]   Microsoft.Extensions.Diagnostics.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Diagnostics.Abstractions/ref/Release/net11.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
[00:01:43] [pr release]   Microsoft.Extensions.Diagnostics.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Diagnostics.Abstractions/Release/net11.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
[00:01:43] [pr release]   Microsoft.Extensions.Hosting.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.Abstractions/ref/Release/net11.0/Microsoft.Extensions.Hosting.Abstractions.dll
[00:01:43] [pr release]   Microsoft.Extensions.Hosting.Abstractions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.Abstractions/Release/net11.0/Microsoft.Extensions.Hosting.Abstractions.dll
[00:01:44] [pr release]   System.AppContext -> /runner/runtime/artifacts/bin/System.AppContext/Release/net11.0-linux/System.AppContext.dll
[00:01:44] [pr release]   System.IO -> /runner/runtime/artifacts/bin/System.IO/Release/net11.0-linux/System.IO.dll
[00:01:44] [pr release]   System.Runtime.Handles -> /runner/runtime/artifacts/bin/System.Runtime.Handles/Release/net11.0-linux/System.Runtime.Handles.dll
[00:01:44] [pr release]   System.Diagnostics.PerformanceCounter -> /runner/runtime/artifacts/bin/System.Diagnostics.PerformanceCounter/stub/Release/net11.0/System.Diagnostics.PerformanceCounter.dll
[00:01:44] [pr release]   System.Reflection -> /runner/runtime/artifacts/bin/System.Reflection/Release/net11.0-linux/System.Reflection.dll
[00:01:44] [pr release]   System.ValueTuple -> /runner/runtime/artifacts/bin/System.ValueTuple/Release/net11.0-linux/System.ValueTuple.dll
[00:01:44] [pr release]   System.Security.Principal -> /runner/runtime/artifacts/bin/System.Security.Principal/Release/net11.0-linux/System.Security.Principal.dll
[00:01:44] [pr release]   System.Globalization -> /runner/runtime/artifacts/bin/System.Globalization/Release/net11.0-linux/System.Globalization.dll
[00:01:44] [pr release]   System.Threading.Timer -> /runner/runtime/artifacts/bin/System.Threading.Timer/Release/net11.0-linux/System.Threading.Timer.dll
[00:01:44] [pr release]   System.Reflection.DispatchProxy -> /runner/runtime/artifacts/bin/System.Reflection.DispatchProxy/ref/Release/net11.0/System.Reflection.DispatchProxy.dll
[00:01:44] [pr release]   System.Runtime.CompilerServices.Unsafe -> /runner/runtime/artifacts/bin/System.Runtime.CompilerServices.Unsafe/Release/net11.0-linux/System.Runtime.CompilerServices.Unsafe.dll
[00:01:44] [pr release]   System.Data.OleDb -> /runner/runtime/artifacts/bin/System.Data.OleDb/stub/Release/net11.0/System.Data.OleDb.dll
[00:01:44] [pr release]   System.Diagnostics.Debug -> /runner/runtime/artifacts/bin/System.Diagnostics.Debug/Release/net11.0-linux/System.Diagnostics.Debug.dll
[00:01:44] [pr release]   System.Resources.ResourceManager -> /runner/runtime/artifacts/bin/System.Resources.ResourceManager/Release/net11.0-linux/System.Resources.ResourceManager.dll
[00:01:44] [pr release]   System.Diagnostics.Tools -> /runner/runtime/artifacts/bin/System.Diagnostics.Tools/Release/net11.0-linux/System.Diagnostics.Tools.dll
[00:01:44] [pr release]   System.Text.Encoding -> /runner/runtime/artifacts/bin/System.Text.Encoding/Release/net11.0-linux/System.Text.Encoding.dll
[00:01:44] [pr release]   System.Runtime.Extensions -> /runner/runtime/artifacts/bin/System.Runtime.Extensions/Release/net11.0-linux/System.Runtime.Extensions.dll
[00:01:44] [pr release]   System.Threading.Tasks.Extensions -> /runner/runtime/artifacts/bin/System.Threading.Tasks.Extensions/Release/net11.0-linux/System.Threading.Tasks.Extensions.dll
[00:01:44] [pr release]   System.IO.Compression.FileSystem -> /runner/runtime/artifacts/bin/System.IO.Compression.FileSystem/Release/net11.0-linux/System.IO.Compression.FileSystem.dll
[00:01:44] [pr release]   System.Dynamic.Runtime -> /runner/runtime/artifacts/bin/System.Dynamic.Runtime/Release/net11.0-linux/System.Dynamic.Runtime.dll
[00:01:44] [pr release]   System.ComponentModel.DataAnnotations -> /runner/runtime/artifacts/bin/System.ComponentModel.DataAnnotations/Release/net11.0-linux/System.ComponentModel.DataAnnotations.dll
[00:01:44] [pr release]   System.Windows -> /runner/runtime/artifacts/bin/System.Windows/Release/net11.0-linux/System.Windows.dll
[00:01:44] [pr release]   System.Threading.Tasks -> /runner/runtime/artifacts/bin/System.Threading.Tasks/Release/net11.0-linux/System.Threading.Tasks.dll
[00:01:44] [pr release]   System.IO.FileSystem.Primitives -> /runner/runtime/artifacts/bin/System.IO.FileSystem.Primitives/Release/net11.0-linux/System.IO.FileSystem.Primitives.dll
[00:01:44] [pr release]   System.Globalization.Calendars -> /runner/runtime/artifacts/bin/System.Globalization.Calendars/Release/net11.0-linux/System.Globalization.Calendars.dll
[00:01:44] [pr release]   System.Resources.Reader -> /runner/runtime/artifacts/bin/System.Resources.Reader/Release/net11.0-linux/System.Resources.Reader.dll
[00:01:44] [pr release]   System.Runtime.CompilerServices.VisualC -> /runner/runtime/artifacts/bin/System.Runtime.CompilerServices.VisualC/ref/Release/net11.0/System.Runtime.CompilerServices.VisualC.dll
[00:01:44] [pr release]   System.Runtime.Serialization.Primitives -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Primitives/ref/Release/net11.0/System.Runtime.Serialization.Primitives.dll
[00:01:44] [pr release]   System.Numerics -> /runner/runtime/artifacts/bin/System.Numerics/Release/net11.0-linux/System.Numerics.dll
[00:01:44] [pr release]   System.IO.UnmanagedMemoryStream -> /runner/runtime/artifacts/bin/System.IO.UnmanagedMemoryStream/Release/net11.0-linux/System.IO.UnmanagedMemoryStream.dll
[00:01:44] [pr release]   System.Runtime.InteropServices.RuntimeInformation -> /runner/runtime/artifacts/bin/System.Runtime.InteropServices.RuntimeInformation/Release/net11.0-linux/System.Runtime.InteropServices.RuntimeInformation.dll
[00:01:44] [pr release]   System.Xml.XmlSerializer -> /runner/runtime/artifacts/bin/System.Xml.XmlSerializer/ref/Release/net11.0/System.Xml.XmlSerializer.dll
[00:01:44] [pr release]   System.Linq.Parallel -> /runner/runtime/artifacts/bin/System.Linq.Parallel/ref/Release/net11.0/System.Linq.Parallel.dll
[00:01:44] [pr release]   Microsoft.VisualBasic -> /runner/runtime/artifacts/bin/Microsoft.VisualBasic/Release/net11.0-linux/Microsoft.VisualBasic.dll
[00:01:44] [pr release]   System.Linq.Queryable -> /runner/runtime/artifacts/bin/System.Linq.Queryable/ref/Release/net11.0/System.Linq.Queryable.dll
[00:01:44] [pr release]   System.Security.SecureString -> /runner/runtime/artifacts/bin/System.Security.SecureString/Release/net11.0-linux/System.Security.SecureString.dll
[00:01:44] [pr release]   System.Xml.XPath.XDocument -> /runner/runtime/artifacts/bin/System.Xml.XPath.XDocument/ref/Release/net11.0/System.Xml.XPath.XDocument.dll
[00:01:44] [pr release]   System.Diagnostics.TextWriterTraceListener -> /runner/runtime/artifacts/bin/System.Diagnostics.TextWriterTraceListener/ref/Release/net11.0/System.Diagnostics.TextWriterTraceListener.dll
[00:01:44] [pr release]   System.Threading.Tasks.Parallel -> /runner/runtime/artifacts/bin/System.Threading.Tasks.Parallel/ref/Release/net11.0/System.Threading.Tasks.Parallel.dll
[00:01:44] [pr release]   System.Reflection.TypeExtensions -> /runner/runtime/artifacts/bin/System.Reflection.TypeExtensions/ref/Release/net11.0/System.Reflection.TypeExtensions.dll
[00:01:44] [pr release]   System.Xml.XPath -> /runner/runtime/artifacts/bin/System.Xml.XPath/ref/Release/net11.0/System.Xml.XPath.dll
[00:01:44] [pr release]   System.Diagnostics.Contracts -> /runner/runtime/artifacts/bin/System.Diagnostics.Contracts/ref/Release/net11.0/System.Diagnostics.Contracts.dll
[00:01:44] [pr release]   System.Globalization.Extensions -> /runner/runtime/artifacts/bin/System.Globalization.Extensions/Release/net11.0-linux/System.Globalization.Extensions.dll
[00:01:44] [pr release]   System.Runtime.Serialization.Schema -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Schema/stub/Release/net11.0/System.Runtime.Serialization.Schema.dll
[00:01:44] [pr release]   System.IO.FileSystem -> /runner/runtime/artifacts/bin/System.IO.FileSystem/Release/net11.0-linux/System.IO.FileSystem.dll
[00:01:44] [pr release]   System.Buffers -> /runner/runtime/artifacts/bin/System.Buffers/Release/net11.0-linux/System.Buffers.dll
[00:01:44] [pr release]   System.Data.Odbc -> /runner/runtime/artifacts/bin/System.Data.Odbc/stub/Release/net11.0/System.Data.Odbc.dll
[00:01:44] [pr release]   System.Reflection.Extensions -> /runner/runtime/artifacts/bin/System.Reflection.Extensions/Release/net11.0-linux/System.Reflection.Extensions.dll
[00:01:44] [pr release]   System.Diagnostics.EventLog -> /runner/runtime/artifacts/bin/System.Diagnostics.EventLog/stub/Release/net11.0/System.Diagnostics.EventLog.dll
[00:01:44] [pr release]   System.Security.Permissions -> /runner/runtime/artifacts/bin/System.Security.Permissions/stub/Release/net11.0/System.Security.Permissions.dll
[00:01:44] [pr release]   System.Configuration.ConfigurationManager -> /runner/runtime/artifacts/bin/System.Configuration.ConfigurationManager/stub/Release/net11.0/System.Configuration.ConfigurationManager.dll
[00:01:44] [pr release]   System.Xml.XmlDocument -> /runner/runtime/artifacts/bin/System.Xml.XmlDocument/Release/net11.0-linux/System.Xml.XmlDocument.dll
[00:01:44] [pr release]   System.Web -> /runner/runtime/artifacts/bin/System.Web/Release/net11.0-linux/System.Web.dll
[00:01:44] [pr release]   System.ServiceProcess.ServiceController -> /runner/runtime/artifacts/bin/System.ServiceProcess.ServiceController/stub/Release/net11.0/System.ServiceProcess.ServiceController.dll
[00:01:44] [pr release]   System.IO.Ports -> /runner/runtime/artifacts/bin/System.IO.Ports/stub/Release/net11.0/System.IO.Ports.dll
[00:01:44] [pr release]   System.ServiceModel.Syndication -> /runner/runtime/artifacts/bin/System.ServiceModel.Syndication/stub/Release/net11.0/System.ServiceModel.Syndication.dll
[00:01:44] [pr release]   System.Security.Cryptography.Pkcs -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Pkcs/stub/Release/net11.0/System.Security.Cryptography.Pkcs.dll
[00:01:44] [pr release]   System.Runtime.CompilerServices.VisualC -> /runner/runtime/artifacts/bin/System.Runtime.CompilerServices.VisualC/Release/net11.0/System.Runtime.CompilerServices.VisualC.dll
[00:01:44] [pr release]   System.Security.Cryptography.ProtectedData -> /runner/runtime/artifacts/bin/System.Security.Cryptography.ProtectedData/stub/Release/net11.0/System.Security.Cryptography.ProtectedData.dll
[00:01:44] [pr release]   System.Security.Cryptography.Xml -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Xml/stub/Release/net11.0/System.Security.Cryptography.Xml.dll
[00:01:44] [pr release]   System.CodeDom -> /runner/runtime/artifacts/bin/System.CodeDom/stub/Release/net11.0/System.CodeDom.dll
[00:01:44] [pr release]   System.Diagnostics.Contracts -> /runner/runtime/artifacts/bin/System.Diagnostics.Contracts/Release/net11.0/System.Diagnostics.Contracts.dll
[00:01:44] [pr release]   System.Windows.Extensions -> /runner/runtime/artifacts/bin/System.Windows.Extensions/stub/Release/net11.0/System.Windows.Extensions.dll
[00:01:44] [pr release]   System.Reflection.TypeExtensions -> /runner/runtime/artifacts/bin/System.Reflection.TypeExtensions/Release/net11.0/System.Reflection.TypeExtensions.dll
[00:01:44] [pr release]   System.Reflection.DispatchProxy -> /runner/runtime/artifacts/bin/System.Reflection.DispatchProxy/Release/net11.0/System.Reflection.DispatchProxy.dll
[00:01:44] [pr release]   System.IO.Packaging -> /runner/runtime/artifacts/bin/System.IO.Packaging/stub/Release/net11.0/System.IO.Packaging.dll
[00:01:44] [pr release]   System.Runtime.Serialization.Primitives -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Primitives/Release/net11.0/System.Runtime.Serialization.Primitives.dll
[00:01:44] [pr release]   System.Linq.Queryable -> /runner/runtime/artifacts/bin/System.Linq.Queryable/Release/net11.0/System.Linq.Queryable.dll
[00:01:44] [pr release]   Microsoft.Win32.SystemEvents -> /runner/runtime/artifacts/bin/Microsoft.Win32.SystemEvents/stub/Release/net11.0/Microsoft.Win32.SystemEvents.dll
[00:01:44] [pr release]   System.Data.SqlClient -> /runner/runtime/artifacts/bin/System.Data.SqlClient/stub/Release/net11.0/System.Data.SqlClient.dll
[00:01:44] [pr release]   System.Configuration -> /runner/runtime/artifacts/bin/System.Configuration/Release/net11.0-linux/System.Configuration.dll
[00:01:44] [pr release]   System.ServiceProcess -> /runner/runtime/artifacts/bin/System.ServiceProcess/Release/net11.0-linux/System.ServiceProcess.dll
[00:01:44] [pr release]   WindowsBase -> /runner/runtime/artifacts/bin/WindowsBase/Release/net11.0-linux/WindowsBase.dll
[00:01:44] [pr release]   System.Transactions -> /runner/runtime/artifacts/bin/System.Transactions/Release/net11.0-linux/System.Transactions.dll
[00:01:44] [pr release]   System.Threading.Tasks.Parallel -> /runner/runtime/artifacts/bin/System.Threading.Tasks.Parallel/Release/net11.0/System.Threading.Tasks.Parallel.dll
[00:01:44] [pr release]   System.Drawing.Common -> /runner/runtime/artifacts/bin/System.Drawing.Common/stub/Release/net11.0/System.Drawing.Common.dll
[00:01:44] [pr release]   System.Drawing -> /runner/runtime/artifacts/bin/System.Drawing/Release/net11.0-linux/System.Drawing.dll
[00:01:45] [pr release]   System.Xml.XmlSerializer -> /runner/runtime/artifacts/bin/System.Xml.XmlSerializer/Release/net11.0/System.Xml.XmlSerializer.dll
[00:01:45] [pr release]   System.Security -> /runner/runtime/artifacts/bin/System.Security/Release/net11.0-linux/System.Security.dll
[00:01:45] [pr release]   System.Xml.Serialization -> /runner/runtime/artifacts/bin/System.Xml.Serialization/Release/net11.0-linux/System.Xml.Serialization.dll
[00:01:45] [pr release]   System.Data.Common -> /runner/runtime/artifacts/bin/System.Data.Common/ref/Release/net11.0/System.Data.Common.dll
[00:01:45] [pr release]   System.Xml.XPath -> /runner/runtime/artifacts/bin/System.Xml.XPath/Release/net11.0/System.Xml.XPath.dll
[00:01:45] [pr release]   System.Xml -> /runner/runtime/artifacts/bin/System.Xml/Release/net11.0-linux/System.Xml.dll
[00:01:45] [pr release]   System.Xml.XPath.XDocument -> /runner/runtime/artifacts/bin/System.Xml.XPath.XDocument/Release/net11.0/System.Xml.XPath.XDocument.dll
[00:01:45] [pr release]   System.Linq.Parallel -> /runner/runtime/artifacts/bin/System.Linq.Parallel/Release/net11.0/System.Linq.Parallel.dll
[00:01:45] [pr release]   System.Xml.Linq -> /runner/runtime/artifacts/bin/System.Xml.Linq/Release/net11.0-linux/System.Xml.Linq.dll
[00:01:46] [pr release]   System.Private.DataContractSerialization -> /runner/runtime/artifacts/bin/System.Private.DataContractSerialization/Release/net11.0/System.Private.DataContractSerialization.dll
[00:01:46] [pr release]   System.Runtime.Serialization.Xml -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Xml/ref/Release/net11.0/System.Runtime.Serialization.Xml.dll
[00:01:46] [pr release]   System.Runtime.Serialization.Json -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Json/ref/Release/net11.0/System.Runtime.Serialization.Json.dll
[00:01:46] [pr release]   System.Runtime.Serialization.Json -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Json/Release/net11.0/System.Runtime.Serialization.Json.dll
[00:01:46] [pr release]   System.ServiceModel.Web -> /runner/runtime/artifacts/bin/System.ServiceModel.Web/Release/net11.0-linux/System.ServiceModel.Web.dll
[00:01:46] [pr release]   System.Runtime.Serialization.Xml -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Xml/Release/net11.0/System.Runtime.Serialization.Xml.dll
[00:01:46] [pr release]   System.Runtime.Serialization -> /runner/runtime/artifacts/bin/System.Runtime.Serialization/Release/net11.0-linux/System.Runtime.Serialization.dll
[00:01:47] [pr release]   System.Data.Common -> /runner/runtime/artifacts/bin/System.Data.Common/Release/net11.0/System.Data.Common.dll
[00:01:47] [pr release]   System.Data.DataSetExtensions -> /runner/runtime/artifacts/bin/System.Data.DataSetExtensions/Release/net11.0-linux/System.Data.DataSetExtensions.dll
[00:01:47] [pr release]   System.Diagnostics.TextWriterTraceListener -> /runner/runtime/artifacts/bin/System.Diagnostics.TextWriterTraceListener/Release/net11.0/System.Diagnostics.TextWriterTraceListener.dll
[00:01:47] [pr release]   System.Net.Primitives -> /runner/runtime/artifacts/bin/System.Net.Primitives/Release/net11.0-unix/System.Net.Primitives.dll
[00:01:47] [pr release]   System.IO.MemoryMappedFiles -> /runner/runtime/artifacts/bin/System.IO.MemoryMappedFiles/Release/net11.0-unix/System.IO.MemoryMappedFiles.dll
[00:01:47] [pr release]   System.IO.FileSystem.DriveInfo -> /runner/runtime/artifacts/bin/System.IO.FileSystem.DriveInfo/Release/net11.0-unix/System.IO.FileSystem.DriveInfo.dll
[00:01:47] [pr release]   System.Console -> /runner/runtime/artifacts/bin/System.Console/Release/net11.0-unix/System.Console.dll
[00:01:47] [pr release]   System.Data -> /runner/runtime/artifacts/bin/System.Data/ref/Release/net11.0-linux/System.Data.dll
[00:01:47] [pr release]   System.Net.NameResolution -> /runner/runtime/artifacts/bin/System.Net.NameResolution/Release/net11.0-unix/System.Net.NameResolution.dll
[00:01:47] [pr release]   System.Data -> /runner/runtime/artifacts/bin/System.Data/Release/net11.0-linux/System.Data.dll
[00:01:47] [pr release]   System.Diagnostics.FileVersionInfo -> /runner/runtime/artifacts/bin/System.Diagnostics.FileVersionInfo/Release/net11.0-unix/System.Diagnostics.FileVersionInfo.dll
[00:01:47] [pr release]   System.IO.Compression -> /runner/runtime/artifacts/bin/System.IO.Compression/Release/net11.0-unix/System.IO.Compression.dll
[00:01:47] [pr release]   System.IO.Compression.Brotli -> /runner/runtime/artifacts/bin/System.IO.Compression.Brotli/Release/net11.0-unix/System.IO.Compression.Brotli.dll
[00:01:48] [pr release]   System.Net.Sockets -> /runner/runtime/artifacts/bin/System.Net.Sockets/Release/net11.0-unix/System.Net.Sockets.dll
[00:01:48] [pr release]   System.Net.NetworkInformation -> /runner/runtime/artifacts/bin/System.Net.NetworkInformation/Release/net11.0-linux/System.Net.NetworkInformation.dll
[00:01:48] [pr release]   System.IO.Pipes -> /runner/runtime/artifacts/bin/System.IO.Pipes/Release/net11.0-unix/System.IO.Pipes.dll
[00:01:48] [pr release]   System.Net.Ping -> /runner/runtime/artifacts/bin/System.Net.Ping/ref/Release/net11.0/System.Net.Ping.dll
[00:01:48] [pr release]   System.Net.Ping -> /runner/runtime/artifacts/bin/System.Net.Ping/Release/net11.0-unix/System.Net.Ping.dll
[00:01:49] [pr release]   System.Security.Cryptography -> /runner/runtime/artifacts/bin/System.Security.Cryptography/Release/net11.0-unix/System.Security.Cryptography.dll
[00:01:49] [pr release]   System.Security.Cryptography.Primitives -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Primitives/Release/net11.0-linux/System.Security.Cryptography.Primitives.dll
[00:01:49] [pr release]   System.Security.Cryptography.OpenSsl -> /runner/runtime/artifacts/bin/System.Security.Cryptography.OpenSsl/Release/net11.0-linux/System.Security.Cryptography.OpenSsl.dll
[00:01:49] [pr release]   System.Security.Cryptography.Encoding -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Encoding/Release/net11.0-linux/System.Security.Cryptography.Encoding.dll
[00:01:49] [pr release]   System.Security.Cryptography.Csp -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Csp/Release/net11.0-linux/System.Security.Cryptography.Csp.dll
[00:01:49] [pr release]   System.Security.Cryptography.Cng -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Cng/Release/net11.0-linux/System.Security.Cryptography.Cng.dll
[00:01:49] [pr release]   System.Security.Cryptography.X509Certificates -> /runner/runtime/artifacts/bin/System.Security.Cryptography.X509Certificates/Release/net11.0-linux/System.Security.Cryptography.X509Certificates.dll
[00:01:49] [pr release]   System.IO.IsolatedStorage -> /runner/runtime/artifacts/bin/System.IO.IsolatedStorage/ref/Release/net11.0/System.IO.IsolatedStorage.dll
[00:01:49] [pr release]   System.Security.Cryptography.Algorithms -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Algorithms/Release/net11.0-linux/System.Security.Cryptography.Algorithms.dll
[00:01:49] [pr release]   System.Net.WebSockets -> /runner/runtime/artifacts/bin/System.Net.WebSockets/Release/net11.0-unix/System.Net.WebSockets.dll
[00:01:49] [pr release]   System.Core -> /runner/runtime/artifacts/bin/System.Core/Release/net11.0-linux/System.Core.dll
[00:01:51] [pr release]   System.Net.Requests -> /runner/runtime/artifacts/bin/System.Net.Requests/Release/net11.0-unix/System.Net.Requests.dll
[00:01:51] [pr release]   System.IO.IsolatedStorage -> /runner/runtime/artifacts/bin/System.IO.IsolatedStorage/Release/net11.0-unix/System.IO.IsolatedStorage.dll
[00:01:51] [pr release]   System.Net.ServicePoint -> /runner/runtime/artifacts/bin/System.Net.ServicePoint/Release/net11.0-linux/System.Net.ServicePoint.dll
[00:01:51] [pr release]   System.Net -> /runner/runtime/artifacts/bin/System.Net/Release/net11.0-linux/System.Net.dll
[00:01:51] [pr release]   System.Net.Mail -> /runner/runtime/artifacts/bin/System.Net.Mail/ref/Release/net11.0/System.Net.Mail.dll
[00:01:51] [pr release]   System.Net.HttpListener -> /runner/runtime/artifacts/bin/System.Net.HttpListener/ref/Release/net11.0/System.Net.HttpListener.dll
[00:01:52] [pr release]   System.Net.Mail -> /runner/runtime/artifacts/bin/System.Net.Mail/Release/net11.0-unix/System.Net.Mail.dll
[00:01:52] [pr release]   System.Net.HttpListener -> /runner/runtime/artifacts/bin/System.Net.HttpListener/Release/net11.0-unix/System.Net.HttpListener.dll
[00:01:52] [pr release]   mscorlib -> /runner/runtime/artifacts/bin/mscorlib/ref/Release/net11.0-linux/mscorlib.dll
[00:01:52] [pr release]   mscorlib -> /runner/runtime/artifacts/bin/mscorlib/Release/net11.0-linux/mscorlib.dll
[00:01:52] [pr release]   System.IO.FileSystem.Watcher -> /runner/runtime/artifacts/bin/System.IO.FileSystem.Watcher/ref/Release/net11.0/System.IO.FileSystem.Watcher.dll
[00:01:54] [pr release]   System.Diagnostics.Process -> /runner/runtime/artifacts/bin/System.Diagnostics.Process/Release/net11.0-linux/System.Diagnostics.Process.dll
[00:01:54] [pr release]   System.IO.FileSystem.Watcher -> /runner/runtime/artifacts/bin/System.IO.FileSystem.Watcher/Release/net11.0-linux/System.IO.FileSystem.Watcher.dll
[00:01:54] [pr release]   System.Net.Security -> /runner/runtime/artifacts/bin/System.Net.Security/Release/net11.0-linux/System.Net.Security.dll
[00:01:54] [pr release]   System.Net.Quic -> /runner/runtime/artifacts/bin/System.Net.Quic/Release/net11.0-linux/System.Net.Quic.dll
[00:01:54] [pr release]   System -> /runner/runtime/artifacts/bin/System/ref/Release/net11.0-linux/System.dll
[00:01:55] [pr release]   System.Net.Http -> /runner/runtime/artifacts/bin/System.Net.Http/Release/net11.0-linux/System.Net.Http.dll
[00:01:55] [pr release]   System -> /runner/runtime/artifacts/bin/System/Release/net11.0-linux/System.dll
[00:01:55] [pr release]   netstandard -> /runner/runtime/artifacts/bin/netstandard/Release/net11.0-linux/netstandard.dll
[00:01:55] [pr release]   System.Formats.Tar -> /runner/runtime/artifacts/bin/System.Formats.Tar/ref/Release/net11.0/System.Formats.Tar.dll
[00:01:55] [pr release]   System.Formats.Tar -> /runner/runtime/artifacts/bin/System.Formats.Tar/Release/net11.0-unix/System.Formats.Tar.dll
[00:01:55] [pr release]   sfx-finish -> Trimming linux-x64 shared framework assemblies with ILLinker...
[00:02:17] [pr release]   Microsoft.Bcl.Numerics -> /runner/runtime/artifacts/bin/Microsoft.Bcl.Numerics/Release/netstandard2.1/Microsoft.Bcl.Numerics.dll
[00:02:17] [pr release]   Microsoft.Bcl.AsyncInterfaces -> /runner/runtime/artifacts/bin/Microsoft.Bcl.AsyncInterfaces/Release/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll
[00:02:21] [pr release]   Microsoft.Extensions.Configuration.Binder.SourceGeneration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Binder.SourceGeneration/Release/netstandard2.0/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll
[00:02:21] [pr release]   System.Composition.Runtime -> /runner/runtime/artifacts/bin/System.Composition.Runtime/Release/net11.0/System.Composition.Runtime.dll
[00:02:21] [pr release]   System.IO.Hashing -> /runner/runtime/artifacts/bin/System.IO.Hashing/ref/Release/net11.0/System.IO.Hashing.dll
[00:02:21] [pr release]   Microsoft.Win32.SystemEvents -> /runner/runtime/artifacts/bin/Microsoft.Win32.SystemEvents/ref/Release/net11.0/Microsoft.Win32.SystemEvents.dll
[00:02:21] [pr release]   System.IO.Hashing -> /runner/runtime/artifacts/bin/System.IO.Hashing/Release/net11.0/System.IO.Hashing.dll
[00:02:21] [pr release]   Microsoft.Bcl.Cryptography -> /runner/runtime/artifacts/bin/Microsoft.Bcl.Cryptography/Release/net11.0/Microsoft.Bcl.Cryptography.dll
[00:02:21] [pr release]   Microsoft.Extensions.DependencyInjection.Specification.Tests -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyInjection.Specification.Tests/Release/net11.0/Microsoft.Extensions.DependencyInjection.Specification.Tests.dll
[00:02:21] [pr release]   Microsoft.Bcl.Memory -> /runner/runtime/artifacts/bin/Microsoft.Bcl.Memory/Release/net11.0/Microsoft.Bcl.Memory.dll
[00:02:21] [pr release]   System.Security.Cryptography.ProtectedData -> /runner/runtime/artifacts/bin/System.Security.Cryptography.ProtectedData/ref/Release/net11.0/System.Security.Cryptography.ProtectedData.dll
[00:02:21] [pr release]   System.Composition.AttributedModel -> /runner/runtime/artifacts/bin/System.Composition.AttributedModel/Release/net11.0/System.Composition.AttributedModel.dll
[00:02:21] [pr release]   System.Composition.Hosting -> /runner/runtime/artifacts/bin/System.Composition.Hosting/Release/net11.0/System.Composition.Hosting.dll
[00:02:21] [pr release]   Microsoft.Extensions.FileProviders.Composite -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Composite/ref/Release/net11.0/Microsoft.Extensions.FileProviders.Composite.dll
[00:02:21] [pr release]   Microsoft.Extensions.Caching.Memory -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Caching.Memory/ref/Release/net11.0/Microsoft.Extensions.Caching.Memory.dll
[00:02:21] [pr release]   System.Security.Cryptography.ProtectedData -> /runner/runtime/artifacts/bin/System.Security.Cryptography.ProtectedData/Release/net11.0/System.Security.Cryptography.ProtectedData.dll
[00:02:21] [pr release]   Microsoft.Win32.SystemEvents -> /runner/runtime/artifacts/bin/Microsoft.Win32.SystemEvents/Release/net11.0/Microsoft.Win32.SystemEvents.dll
[00:02:21] [pr release]   Microsoft.Extensions.FileProviders.Composite -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Composite/Release/net11.0/Microsoft.Extensions.FileProviders.Composite.dll
[00:02:21] [pr release]   Microsoft.Extensions.DependencyModel -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyModel/ref/Release/net11.0/Microsoft.Extensions.DependencyModel.dll
[00:02:21] [pr release]   System.CodeDom -> /runner/runtime/artifacts/bin/System.CodeDom/ref/Release/net11.0/System.CodeDom.dll
[00:02:21] [pr release]   Microsoft.Extensions.DependencyInjection -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyInjection/ref/Release/net11.0/Microsoft.Extensions.DependencyInjection.dll
[00:02:21] [pr release]   Microsoft.Extensions.Configuration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration/ref/Release/net11.0/Microsoft.Extensions.Configuration.dll
[00:02:21] [pr release]   Microsoft.Extensions.FileSystemGlobbing -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileSystemGlobbing/ref/Release/net11.0/Microsoft.Extensions.FileSystemGlobbing.dll
[00:02:21] [pr release]   System.Numerics.Tensors -> /runner/runtime/artifacts/bin/System.Numerics.Tensors/ref/Release/net11.0/System.Numerics.Tensors.dll
[00:02:21] [pr release]   Microsoft.Win32.Registry.AccessControl -> /runner/runtime/artifacts/bin/Microsoft.Win32.Registry.AccessControl/ref/Release/net11.0/Microsoft.Win32.Registry.AccessControl.dll
[00:02:22] [pr release]   System.ServiceModel.Syndication -> /runner/runtime/artifacts/bin/System.ServiceModel.Syndication/ref/Release/net11.0/System.ServiceModel.Syndication.dll
[00:02:22] [pr release]   System.Speech -> /runner/runtime/artifacts/bin/System.Speech/ref/Release/net11.0/System.Speech.dll
[00:02:22] [pr release]   System.Formats.Nrbf -> /runner/runtime/artifacts/bin/System.Formats.Nrbf/ref/Release/net11.0/System.Formats.Nrbf.dll
[00:02:22] [pr release]   System.Reflection.Context -> /runner/runtime/artifacts/bin/System.Reflection.Context/ref/Release/net11.0/System.Reflection.Context.dll
[00:02:22] [pr release]   System.Net.Http.WinHttpHandler -> /runner/runtime/artifacts/bin/System.Net.Http.WinHttpHandler/ref/Release/net11.0/System.Net.Http.WinHttpHandler.dll
[00:02:22] [pr release]   System.Security.Cryptography.Pkcs -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Pkcs/ref/Release/net11.0/System.Security.Cryptography.Pkcs.dll
[00:02:22] [pr release]   System.Diagnostics.EventLog -> /runner/runtime/artifacts/bin/System.Diagnostics.EventLog/ref/Release/net11.0/System.Diagnostics.EventLog.dll
[00:02:22] [pr release]   Microsoft.Extensions.Caching.Memory -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Caching.Memory/Release/net11.0/Microsoft.Extensions.Caching.Memory.dll
[00:02:22] [pr release]   Microsoft.Extensions.Options.DataAnnotations -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options.DataAnnotations/ref/Release/net11.0/Microsoft.Extensions.Options.DataAnnotations.dll
[00:02:22] [pr release]   Microsoft.Extensions.FileSystemGlobbing -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileSystemGlobbing/Release/net11.0/Microsoft.Extensions.FileSystemGlobbing.dll
[00:02:22] [pr release]   Microsoft.Extensions.DependencyModel -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyModel/Release/net11.0/Microsoft.Extensions.DependencyModel.dll
[00:02:22] [pr release]   System.Threading.RateLimiting -> /runner/runtime/artifacts/bin/System.Threading.RateLimiting/ref/Release/net11.0/System.Threading.RateLimiting.dll
[00:02:22] [pr release]   System.Memory.Data -> /runner/runtime/artifacts/bin/System.Memory.Data/ref/Release/net11.0/System.Memory.Data.dll
[00:02:22] [pr release]   System.Formats.Nrbf -> /runner/runtime/artifacts/bin/System.Formats.Nrbf/Release/net11.0/System.Formats.Nrbf.dll
[00:02:22] [pr release]   System.Formats.Cbor -> /runner/runtime/artifacts/bin/System.Formats.Cbor/ref/Release/net11.0/System.Formats.Cbor.dll
[00:02:22] [pr release]   System.ComponentModel.Composition -> /runner/runtime/artifacts/bin/System.ComponentModel.Composition/ref/Release/net11.0/System.ComponentModel.Composition.dll
[00:02:22] [pr release]   System.Speech -> /runner/runtime/artifacts/bin/System.Speech/Release/net11.0/System.Speech.dll
[00:02:22] [pr release]   Microsoft.Extensions.DependencyInjection -> /runner/runtime/artifacts/bin/Microsoft.Extensions.DependencyInjection/Release/net11.0/Microsoft.Extensions.DependencyInjection.dll
[00:02:22] [pr release]   Microsoft.Extensions.Options.DataAnnotations -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options.DataAnnotations/Release/net11.0/Microsoft.Extensions.Options.DataAnnotations.dll
[00:02:22] [pr release]   System.Reflection.MetadataLoadContext -> /runner/runtime/artifacts/bin/System.Reflection.MetadataLoadContext/ref/Release/net11.0/System.Reflection.MetadataLoadContext.dll
[00:02:22] [pr release]   System.Composition.Convention -> /runner/runtime/artifacts/bin/System.Composition.Convention/Release/net11.0/System.Composition.Convention.dll
[00:02:22] [pr release]   System.Memory.Data -> /runner/runtime/artifacts/bin/System.Memory.Data/Release/net11.0/System.Memory.Data.dll
[00:02:22] [pr release]   System.Formats.Cbor -> /runner/runtime/artifacts/bin/System.Formats.Cbor/Release/net11.0/System.Formats.Cbor.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration/Release/net11.0/Microsoft.Extensions.Configuration.dll
[00:02:22] [pr release]   Microsoft.Extensions.FileProviders.Physical -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Physical/ref/Release/net11.0/Microsoft.Extensions.FileProviders.Physical.dll
[00:02:22] [pr release]   System.Resources.Extensions -> /runner/runtime/artifacts/bin/System.Resources.Extensions/ref/Release/net11.0/System.Resources.Extensions.dll
[00:02:22] [pr release]   System.IO.Packaging -> /runner/runtime/artifacts/bin/System.IO.Packaging/ref/Release/net11.0/System.IO.Packaging.dll
[00:02:22] [pr release]   System.Security.Cryptography.Cose -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Cose/ref/Release/net11.0/System.Security.Cryptography.Cose.dll
[00:02:22] [pr release]   System.ComponentModel.Composition -> /runner/runtime/artifacts/bin/System.ComponentModel.Composition/Release/net11.0/System.ComponentModel.Composition.dll
[00:02:22] [pr release]   System.Threading.RateLimiting -> /runner/runtime/artifacts/bin/System.Threading.RateLimiting/Release/net11.0/System.Threading.RateLimiting.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Binder -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Binder/ref/Release/net11.0/Microsoft.Extensions.Configuration.Binder.dll
[00:02:22] [pr release]   System.Reflection.Context -> /runner/runtime/artifacts/bin/System.Reflection.Context/Release/net11.0/System.Reflection.Context.dll
[00:02:22] [pr release]   System.ServiceModel.Syndication -> /runner/runtime/artifacts/bin/System.ServiceModel.Syndication/Release/net11.0/System.ServiceModel.Syndication.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.CommandLine -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.CommandLine/ref/Release/net11.0/Microsoft.Extensions.Configuration.CommandLine.dll
[00:02:22] [pr release]   Microsoft.Extensions.FileProviders.Physical -> /runner/runtime/artifacts/bin/Microsoft.Extensions.FileProviders.Physical/Release/net11.0/Microsoft.Extensions.FileProviders.Physical.dll
[00:02:22] [pr release]   System.Net.Http.WinHttpHandler -> /runner/runtime/artifacts/bin/System.Net.Http.WinHttpHandler/Release/net11.0/System.Net.Http.WinHttpHandler.dll
[00:02:22] [pr release]   System.Resources.Extensions -> /runner/runtime/artifacts/bin/System.Resources.Extensions/Release/net11.0/System.Resources.Extensions.dll
[00:02:22] [pr release]   System.Security.Cryptography.Cose -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Cose/Release/net11.0/System.Security.Cryptography.Cose.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Binder -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Binder/Release/net11.0/Microsoft.Extensions.Configuration.Binder.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.EnvironmentVariables -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.EnvironmentVariables/ref/Release/net11.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.CommandLine -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.CommandLine/Release/net11.0/Microsoft.Extensions.Configuration.CommandLine.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.FileExtensions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.FileExtensions/ref/Release/net11.0/Microsoft.Extensions.Configuration.FileExtensions.dll
[00:02:22] [pr release]   System.Composition.TypedParts -> /runner/runtime/artifacts/bin/System.Composition.TypedParts/Release/net11.0/System.Composition.TypedParts.dll
[00:02:22] [pr release]   Microsoft.Win32.Registry.AccessControl -> /runner/runtime/artifacts/bin/Microsoft.Win32.Registry.AccessControl/Release/net11.0/Microsoft.Win32.Registry.AccessControl.dll
[00:02:22] [pr release]   System.Security.Cryptography.Pkcs -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Pkcs/Release/net11.0/System.Security.Cryptography.Pkcs.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.EnvironmentVariables -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.EnvironmentVariables/Release/net11.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
[00:02:22] [pr release]   System.Numerics.Tensors -> /runner/runtime/artifacts/bin/System.Numerics.Tensors/Release/net11.0/System.Numerics.Tensors.dll
[00:02:22] [pr release]   System.Security.Cryptography.Xml -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Xml/ref/Release/net11.0/System.Security.Cryptography.Xml.dll
[00:02:22] [pr release]   System.Diagnostics.EventLog -> /runner/runtime/artifacts/bin/System.Diagnostics.EventLog/Release/net11.0/System.Diagnostics.EventLog.dll
[00:02:22] [pr release]   System.DirectoryServices.Protocols -> /runner/runtime/artifacts/bin/System.DirectoryServices.Protocols/ref/Release/net11.0/System.DirectoryServices.Protocols.dll
[00:02:22] [pr release]   Microsoft.Extensions.Options.ConfigurationExtensions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options.ConfigurationExtensions/ref/Release/net11.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.FileExtensions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.FileExtensions/Release/net11.0/Microsoft.Extensions.Configuration.FileExtensions.dll
[00:02:22] [pr release]   System.Reflection.MetadataLoadContext -> /runner/runtime/artifacts/bin/System.Reflection.MetadataLoadContext/Release/net11.0/System.Reflection.MetadataLoadContext.dll
[00:02:22] [pr release]   System.CodeDom -> /runner/runtime/artifacts/bin/System.CodeDom/Release/net11.0/System.CodeDom.dll
[00:02:22] [pr release]   Microsoft.Extensions.Options.ConfigurationExtensions -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Options.ConfigurationExtensions/Release/net11.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging/ref/Release/net11.0/Microsoft.Extensions.Logging.dll
[00:02:22] [pr release]   System.ComponentModel.Composition.Registration -> /runner/runtime/artifacts/bin/System.ComponentModel.Composition.Registration/ref/Release/net11.0/System.ComponentModel.Composition.Registration.dll
[00:02:22] [pr release]   System.Configuration.ConfigurationManager -> /runner/runtime/artifacts/bin/System.Configuration.ConfigurationManager/ref/Release/net11.0/System.Configuration.ConfigurationManager.dll
[00:02:22] [pr release]   Microsoft.Extensions.Diagnostics -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Diagnostics/ref/Release/net11.0/Microsoft.Extensions.Diagnostics.dll
[00:02:22] [pr release]   System.DirectoryServices.Protocols -> /runner/runtime/artifacts/bin/System.DirectoryServices.Protocols/Release/net11.0/System.DirectoryServices.Protocols.dll
[00:02:22] [pr release]   Microsoft.Extensions.Diagnostics -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Diagnostics/Release/net11.0/Microsoft.Extensions.Diagnostics.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging/Release/net11.0/Microsoft.Extensions.Logging.dll
[00:02:22] [pr release]   System.IO.Packaging -> /runner/runtime/artifacts/bin/System.IO.Packaging/Release/net11.0/System.IO.Packaging.dll
[00:02:22] [pr release]   System.ComponentModel.Composition.Registration -> /runner/runtime/artifacts/bin/System.ComponentModel.Composition.Registration/Release/net11.0/System.ComponentModel.Composition.Registration.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.EventSource -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.EventSource/ref/Release/net11.0/Microsoft.Extensions.Logging.EventSource.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.TraceSource -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.TraceSource/ref/Release/net11.0/Microsoft.Extensions.Logging.TraceSource.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Debug -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Debug/ref/Release/net11.0/Microsoft.Extensions.Logging.Debug.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Configuration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Configuration/ref/Release/net11.0/Microsoft.Extensions.Logging.Configuration.dll
[00:02:22] [pr release]   System.Windows.Extensions -> /runner/runtime/artifacts/bin/System.Windows.Extensions/ref/Release/net11.0/System.Windows.Extensions.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Debug -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Debug/Release/net11.0/Microsoft.Extensions.Logging.Debug.dll
[00:02:22] [pr release]   Microsoft.Extensions.Http -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Http/ref/Release/net11.0/Microsoft.Extensions.Http.dll
[00:02:22] [pr release]   System.Security.Cryptography.Xml -> /runner/runtime/artifacts/bin/System.Security.Cryptography.Xml/Release/net11.0/System.Security.Cryptography.Xml.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.TraceSource -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.TraceSource/Release/net11.0/Microsoft.Extensions.Logging.TraceSource.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.EventSource -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.EventSource/Release/net11.0/Microsoft.Extensions.Logging.EventSource.dll
[00:02:22] [pr release]   System.Runtime.Serialization.Schema -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Schema/ref/Release/net11.0/System.Runtime.Serialization.Schema.dll
[00:02:22] [pr release]   System.Management -> /runner/runtime/artifacts/bin/System.Management/ref/Release/net11.0/System.Management.dll
[00:02:22] [pr release]   Microsoft.Extensions.Http -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Http/Release/net11.0/Microsoft.Extensions.Http.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Ini -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Ini/ref/Release/net11.0/Microsoft.Extensions.Configuration.Ini.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Json -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Json/ref/Release/net11.0/Microsoft.Extensions.Configuration.Json.dll
[00:02:22] [pr release]   System.Windows.Extensions -> /runner/runtime/artifacts/bin/System.Windows.Extensions/Release/net11.0/System.Windows.Extensions.dll
[00:02:22] [pr release]   System.Configuration.ConfigurationManager -> /runner/runtime/artifacts/bin/System.Configuration.ConfigurationManager/Release/net11.0/System.Configuration.ConfigurationManager.dll
[00:02:22] [pr release]   System.ServiceProcess.ServiceController -> /runner/runtime/artifacts/bin/System.ServiceProcess.ServiceController/ref/Release/net11.0/System.ServiceProcess.ServiceController.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Json -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Json/Release/net11.0/Microsoft.Extensions.Configuration.Json.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Xml -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Xml/ref/Release/net11.0/Microsoft.Extensions.Configuration.Xml.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Ini -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Ini/Release/net11.0/Microsoft.Extensions.Configuration.Ini.dll
[00:02:22] [pr release]   System.Security.Permissions -> /runner/runtime/artifacts/bin/System.Security.Permissions/ref/Release/net11.0/System.Security.Permissions.dll
[00:02:22] [pr release]   System.Management -> /runner/runtime/artifacts/bin/System.Management/Release/net11.0/System.Management.dll
[00:02:22] [pr release]   System.Diagnostics.PerformanceCounter -> /runner/runtime/artifacts/bin/System.Diagnostics.PerformanceCounter/ref/Release/net11.0/System.Diagnostics.PerformanceCounter.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Configuration -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Configuration/Release/net11.0/Microsoft.Extensions.Logging.Configuration.dll
[00:02:22] [pr release]   System.Runtime.Serialization.Schema -> /runner/runtime/artifacts/bin/System.Runtime.Serialization.Schema/Release/net11.0/System.Runtime.Serialization.Schema.dll
[00:02:22] [pr release]   System.ServiceProcess.ServiceController -> /runner/runtime/artifacts/bin/System.ServiceProcess.ServiceController/Release/net11.0/System.ServiceProcess.ServiceController.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.EventLog -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.EventLog/ref/Release/net11.0/Microsoft.Extensions.Logging.EventLog.dll
[00:02:22] [pr release]   System.Runtime.Caching -> /runner/runtime/artifacts/bin/System.Runtime.Caching/ref/Release/net11.0/System.Runtime.Caching.dll
[00:02:22] [pr release]   System.Diagnostics.PerformanceCounter -> /runner/runtime/artifacts/bin/System.Diagnostics.PerformanceCounter/Release/net11.0/System.Diagnostics.PerformanceCounter.dll
[00:02:22] [pr release]   System.Security.Permissions -> /runner/runtime/artifacts/bin/System.Security.Permissions/Release/net11.0/System.Security.Permissions.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Console -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Console/ref/Release/net11.0/Microsoft.Extensions.Logging.Console.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.Xml -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.Xml/Release/net11.0/Microsoft.Extensions.Configuration.Xml.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.EventLog -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.EventLog/Release/net11.0/Microsoft.Extensions.Logging.EventLog.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.UserSecrets -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.UserSecrets/ref/Release/net11.0/Microsoft.Extensions.Configuration.UserSecrets.dll
[00:02:22] [pr release]   System.DirectoryServices -> /runner/runtime/artifacts/bin/System.DirectoryServices/ref/Release/net11.0/System.DirectoryServices.dll
[00:02:22] [pr release]   Microsoft.Extensions.Logging.Console -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Logging.Console/Release/net11.0/Microsoft.Extensions.Logging.Console.dll
[00:02:22] [pr release]   System.Runtime.Caching -> /runner/runtime/artifacts/bin/System.Runtime.Caching/Release/net11.0/System.Runtime.Caching.dll
[00:02:22] [pr release]   System.Data.OleDb -> /runner/runtime/artifacts/bin/System.Data.OleDb/ref/Release/net11.0/System.Data.OleDb.dll
[00:02:22] [pr release]   System.DirectoryServices -> /runner/runtime/artifacts/bin/System.DirectoryServices/Release/net11.0/System.DirectoryServices.dll
[00:02:22] [pr release]   Microsoft.Extensions.Configuration.UserSecrets -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Configuration.UserSecrets/Release/net11.0/Microsoft.Extensions.Configuration.UserSecrets.dll
[00:02:22] [pr release]   System.Data.OleDb -> /runner/runtime/artifacts/bin/System.Data.OleDb/Release/net11.0/System.Data.OleDb.dll
[00:02:22] [pr release]   System.DirectoryServices.AccountManagement -> /runner/runtime/artifacts/bin/System.DirectoryServices.AccountManagement/ref/Release/net11.0/System.DirectoryServices.AccountManagement.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting/ref/Release/net11.0/Microsoft.Extensions.Hosting.dll
[00:02:23] [pr release]   System.DirectoryServices.AccountManagement -> /runner/runtime/artifacts/bin/System.DirectoryServices.AccountManagement/Release/net11.0/System.DirectoryServices.AccountManagement.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting/Release/net11.0/Microsoft.Extensions.Hosting.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting.Systemd -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.Systemd/ref/Release/net11.0/Microsoft.Extensions.Hosting.Systemd.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting.WindowsServices -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.WindowsServices/ref/Release/net11.0/Microsoft.Extensions.Hosting.WindowsServices.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting.Systemd -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.Systemd/Release/net11.0/Microsoft.Extensions.Hosting.Systemd.dll
[00:02:23] [pr release]   Microsoft.Extensions.Hosting.WindowsServices -> /runner/runtime/artifacts/bin/Microsoft.Extensions.Hosting.WindowsServices/Release/net11.0/Microsoft.Extensions.Hosting.WindowsServices.dll
[00:02:23] [pr release]   Microsoft.Bcl.TimeProvider -> /runner/runtime/artifacts/bin/Microsoft.Bcl.TimeProvider/Release/net10.0/Microsoft.Bcl.TimeProvider.dll
[00:02:23] [pr release]   Microsoft.NETCore.Platforms -> /runner/runtime/artifacts/bin/Microsoft.NETCore.Platforms/Release/net11.0/Microsoft.NETCore.Platforms.dll
[00:02:23] [pr release]   System.Threading.WebAssembly.Threading -> /runner/runtime/artifacts/bin/System.Threading.WebAssembly.Threading/ref/Release/net11.0/System.Threading.dll
[00:02:23] [pr release]   System.Threading.Thread.WebAssembly.Threading -> /runner/runtime/artifacts/bin/System.Threading.Thread.WebAssembly.Threading/ref/Release/net11.0/System.Threading.Thread.dll
[00:02:23] [pr release]   System.Threading.ThreadPool.WebAssembly.Threading -> /runner/runtime/artifacts/bin/System.Threading.ThreadPool.WebAssembly.Threading/ref/Release/net11.0/System.Threading.ThreadPool.dll
[00:02:23] [pr release]   System.Data.Odbc -> /runner/runtime/artifacts/bin/System.Data.Odbc/ref/Release/net11.0/System.Data.Odbc.dll
[00:02:23] [pr release]   System.IO.Ports -> /runner/runtime/artifacts/bin/System.IO.Ports/ref/Release/net11.0/System.IO.Ports.dll
[00:02:23] [pr release]   System.IO.Ports -> /runner/runtime/artifacts/bin/System.IO.Ports/Release/net11.0-unix/System.IO.Ports.dll
[00:02:23] [pr release]   System.Data.Odbc -> /runner/runtime/artifacts/bin/System.Data.Odbc/Release/net11.0-unix/System.Data.Odbc.dll
[00:02:24] [pr release]   System.DirectoryServices.Protocols -> /runner/runtime/artifacts/bin/System.DirectoryServices.Protocols/Release/net11.0-linux/System.DirectoryServices.Protocols.dll
[00:02:24] [pr release]   oob-trim -> Trimming linux-x64 out-of-band assemblies with ILLinker...
[00:02:29] [pr release]   "/runner/runtime/src/native/corehost/build.sh" Release x64 -commithash "0dfcc658ddfd969a7e10773aad585bd0f70d83cb" -os linux -cmakeargs "-DVERSION_FILE_PATH=/runner/runtime/artifacts/obj/_version.c" -ninja -runtimeflavor CoreCLR -targetrid linux-x64 -cmakeargs "-DCLR_CMAKE_BUILD_HOST_TESTS=FALSE" -cmakeargs "-DCLR_CMAKE_BUILD_HOST_PRODUCT=TRUE" 
[00:02:29] [pr release]   __TargetRid: linux-x64
[00:02:29] [pr release]   Setting up directories for build
[00:02:29] [pr release]   Checking prerequisites...
[00:02:29] [pr release]   /usr/bin/ninja
[00:02:29] [pr release]   Commencing build of "install" target in "installer component" for linux.x64.Release in /runner/runtime/artifacts/obj/linux-x64.Release
[00:02:29] [pr release]   Invoking "/runner/runtime/eng/native/gen-buildsys.sh" "/runner/runtime/src/native/corehost" "/runner/runtime/artifacts/obj/linux-x64.Release" x64 linux clang Release "ninja"  -DFEATURE_DISTRO_AGNOSTIC_SSL=1 -DCLI_CMAKE_FALLBACK_OS="linux" -DCLI_CMAKE_COMMIT_HASH="0dfcc658ddfd969a7e10773aad585bd0f70d83cb" -DFEATURE_DISTRO_AGNOSTIC_SSL=1 -DCLR_CMAKE_BUILD_HOST_PRODUCT=TRUE -DCLR_CMAKE_BUILD_HOST_TESTS=FALSE -DVERSION_FILE_PATH=/runner/runtime/artifacts/obj/_version.c 
[00:02:30] [pr release]   -- The linker identification is Ubuntu LLD 18.1.3 (compatible with GNU linkers)
[00:02:30] [pr release]   Not searching for unused variables given on the command line.
[00:02:30] [pr release]   Detected Linux x86_64
[00:02:30] [pr release]   -- Configuring done (0.2s)
[00:02:30] [pr release]   -- Generating done (0.0s)
[00:02:30] [pr release]   -- Build files have been written to: /runner/runtime/artifacts/obj/linux-x64.Release
[00:02:31] [pr release]   /runner/runtime/artifacts/obj/linux-x64.Release /runner/runtime/src/native/corehost
[00:02:31] [pr release]   Executing /usr/bin/ninja -j 32 install
[00:02:32] [pr release]   [1/100] Building C object nethost/CMakeFiles/nethost.dir/nethost.c.o
[00:02:32] [pr release]   [2/100] Building C object nethost/CMakeFiles/libnethost.dir/nethost.c.o
[00:02:32] [pr release]   [3/100] Building C object hostmisc/CMakeFiles/hostmisc.dir/utils.c.o
[00:02:32] [pr release]   [4/100] Building C object nethost/CMakeFiles/nethost.dir/__/fxr_resolver.c.o
[00:02:32] [pr release]   [5/100] Building C object hostmisc/CMakeFiles/hostmisc.dir/trace.c.o
[00:02:32] [pr release]   [6/100] Building C object hostmisc/CMakeFiles/hostmisc.dir/pal.unix.c.o
[00:02:32] [pr release]   [7/100] Building C object hostmisc/CMakeFiles/hostmisc_public.dir/utils.c.o
[00:02:32] [pr release]   [8/100] Building C object hostmisc/CMakeFiles/hostmisc_c.dir/trace.c.o
[00:02:32] [pr release]   [9/100] Building C object hostmisc/CMakeFiles/hostmisc_c.dir/pal.unix.c.o
[00:02:32] [pr release]   [10/100] Building C object nethost/CMakeFiles/libnethost.dir/__/fxr_resolver.c.o
[00:02:32] [pr release]   [11/100] Building C object hostmisc/CMakeFiles/hostmisc_c.dir/utils.c.o
[00:02:32] [pr release]   [12/100] Building C object hostmisc/CMakeFiles/hostmisc_public.dir/trace.c.o
[00:02:32] [pr release]   [13/100] Building C object hostmisc/CMakeFiles/hostmisc_public.dir/pal.unix.c.o
[00:02:32] [pr release]   [14/100] Building C object hostmisc/CMakeFiles/hostmisc_c.dir/fx_ver.c.o
[00:02:32] [pr release]   [15/100] Building C object hostmisc/CMakeFiles/hostmisc.dir/fx_ver.c.o
[00:02:32] [pr release]   [16/100] Building C object hostmisc/CMakeFiles/hostmisc_public.dir/fx_ver.c.o
[00:02:33] [pr release]   [17/100] Linking C static library nethost/libnethost.a
[00:02:33] [pr release]   [18/100] Linking C shared library nethost/libnethost.so
[00:02:33] [pr release]   Stripping symbols from libnethost.so into libnethost.so.dbg
[00:02:33] [pr release]   [19/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/version_compatibility_range.cpp.o
[00:02:33] [pr release]   [20/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/roll_forward_option.cpp.o
[00:02:33] [pr release]   [21/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/bundle/header.cpp.o
[00:02:33] [pr release]   [22/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/fx_reference.cpp.o
[00:02:33] [pr release]   [23/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/bundle/reader.cpp.o
[00:02:33] [pr release]   [24/100] Building CXX object hostmisc/CMakeFiles/hostmisc.dir/__/fxr/fx_ver.cpp.o
[00:02:33] [pr release]   [25/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/host_startup_info.cpp.o
[00:02:33] [pr release]   [26/100] Building CXX object hostmisc/CMakeFiles/hostmisc_public.dir/__/fxr/fx_ver.cpp.o
[00:02:33] [pr release]   [27/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/bundle/info.cpp.o
[00:02:33] [pr release]   [28/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/fx_definition.cpp.o
[00:02:33] [pr release]   [29/100] Building CXX object hostmisc/CMakeFiles/hostmisc_public.dir/utils.cpp.o
[00:02:33] [pr release]   [30/100] Building CXX object hostmisc/CMakeFiles/hostmisc.dir/utils.cpp.o
[00:02:33] [pr release]   [31/100] Building CXX object hostmisc/CMakeFiles/hostmisc_public.dir/pal.unix.cpp.o
[00:02:33] [pr release]   [32/100] Building CXX object hostmisc/CMakeFiles/hostmisc.dir/pal.unix.cpp.o
[00:02:33] [pr release]   [33/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/hostpolicy_resolver.cpp.o
[00:02:33] [pr release]   [34/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/standalone/hostpolicy_resolver.cpp.o
[00:02:33] [pr release]   [35/100] Linking CXX static library hostmisc/libhostmisc.a
[00:02:33] [pr release]   [36/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/host_startup_info.cpp.o
[00:02:33] [pr release]   [37/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/roll_forward_option.cpp.o
[00:02:33] [pr release]   [38/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/json_parser.cpp.o
[00:02:33] [pr release]   [39/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/install_info.cpp.o
[00:02:33] [pr release]   [40/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/command_line.cpp.o
[00:02:33] [pr release]   [41/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/fx_resolver.messages.cpp.o
[00:02:33] [pr release]   [42/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/host_context.cpp.o
[00:02:33] [pr release]   [43/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/fx_reference.cpp.o
[00:02:33] [pr release]   [44/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/bundle/reader.cpp.o
[00:02:33] [pr release]   [45/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/json_parser.cpp.o
[00:02:33] [pr release]   [46/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/sdk_info.cpp.o
[00:02:33] [pr release]   [47/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/bundle/header.cpp.o
[00:02:33] [pr release]   [48/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/version_compatibility_range.cpp.o
[00:02:34] [pr release]   [49/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/bundle/info.cpp.o
[00:02:34] [pr release]   [50/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/sdk_resolver.cpp.o
[00:02:34] [pr release]   [51/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/fx_definition.cpp.o
[00:02:34] [pr release]   [52/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/framework_info.cpp.o
[00:02:34] [pr release]   [53/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/corehost_init.cpp.o
[00:02:34] [pr release]   [54/100] Building CXX object hostcommon/CMakeFiles/libhostcommon.dir/__/runtime_config.cpp.o
[00:02:34] [pr release]   [55/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/command_line.cpp.o
[00:02:34] [pr release]   [56/100] Linking CXX static library hostcommon/liblibhostcommon.a
[00:02:34] [pr release]   [57/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/coreclr_resolver.cpp.o
[00:02:34] [pr release]   [58/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/hostfxr.cpp.o
[00:02:34] [pr release]   [59/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/fx_resolver.messages.cpp.o
[00:02:34] [pr release]   [60/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/deps_entry.cpp.o
[00:02:34] [pr release]   [61/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/corehost_init.cpp.o
[00:02:34] [pr release]   [62/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/install_info.cpp.o
[00:02:34] [pr release]   [63/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/host_context.cpp.o
[00:02:34] [pr release]   [64/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/args.cpp.o
[00:02:34] [pr release]   [65/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/breadcrumbs.cpp.o
[00:02:34] [pr release]   [66/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/shared_store.cpp.o
[00:02:34] [pr release]   [67/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/__/bundle/file_entry.cpp.o
[00:02:34] [pr release]   [68/100] Building C object dotnet/CMakeFiles/dotnet.dir/__/fxr_resolver.c.o
[00:02:34] [pr release]   [69/100] Building C object apphost/standalone/CMakeFiles/apphost.dir/__/__/fxr_resolver.c.o
[00:02:34] [pr release]   [70/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/__/bundle/dir_utils.cpp.o
[00:02:34] [pr release]   [71/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/version.cpp.o
[00:02:34] [pr release]   [72/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/sdk_info.cpp.o
[00:02:34] [pr release]   [73/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/fx_resolver.cpp.o
[00:02:34] [pr release]   [74/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/__/bundle/manifest.cpp.o
[00:02:34] [pr release]   [75/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/__/bundle/extractor.cpp.o
[00:02:34] [pr release]   [76/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/__/runtime_config.cpp.o
[00:02:34] [pr release]   [77/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/hostpolicy_init.cpp.o
[00:02:34] [pr release]   [78/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/coreclr.cpp.o
[00:02:34] [pr release]   [79/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/framework_info.cpp.o
[00:02:34] [pr release]   [80/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/sdk_resolver.cpp.o
[00:02:34] [pr release]   [81/100] Building CXX object apphost/standalone/CMakeFiles/apphost.dir/__/bundle_marker.cpp.o
[00:02:34] [pr release]   [82/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/hostfxr.cpp.o
[00:02:34] [pr release]   [83/100] Building CXX object fxr/standalone/CMakeFiles/hostfxr.dir/__/fx_muxer.cpp.o
[00:02:34] [pr release]   [84/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/__/bundle/runner.cpp.o
[00:02:34] [pr release]   [85/100] Building CXX object apphost/standalone/CMakeFiles/apphost.dir/hostfxr_resolver.cpp.o
[00:02:34] [pr release]   [86/100] Linking CXX shared library fxr/standalone/libhostfxr.so
[00:02:34] [pr release]   Stripping symbols from libhostfxr.so into libhostfxr.so.dbg
[00:02:34] [pr release]   [87/100] Building CXX object dotnet/CMakeFiles/dotnet.dir/__/corehost.cpp.o
[00:02:34] [pr release]   [88/100] Building CXX object dotnet/CMakeFiles/dotnet.dir/__/apphost/standalone/hostfxr_resolver.cpp.o
[00:02:34] [pr release]   [89/100] Building CXX object apphost/standalone/CMakeFiles/apphost.dir/__/__/corehost.cpp.o
[00:02:34] [pr release]   [90/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/hostpolicy_context.cpp.o
[00:02:35] [pr release]   [91/100] Linking CXX executable dotnet/dotnet
[00:02:35] [pr release]   Stripping symbols from dotnet into dotnet.dbg
[00:02:35] [pr release]   [92/100] Linking CXX executable apphost/standalone/apphost
[00:02:35] [pr release]   Stripping symbols from apphost into apphost.dbg
[00:02:35] [pr release]   [93/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/fx_resolver.cpp.o
[00:02:35] [pr release]   [94/100] Building CXX object fxr/staticlib/CMakeFiles/libhostfxr.dir/__/fx_muxer.cpp.o
[00:02:35] [pr release]   [95/100] Linking CXX static library fxr/staticlib/libhostfxr.a
[00:02:35] [pr release]   [96/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/hostpolicy.cpp.o
[00:02:35] [pr release]   [97/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/deps_resolver.cpp.o
[00:02:35] [pr release]   [98/100] Building CXX object hostpolicy/standalone/CMakeFiles/hostpolicy.dir/__/deps_format.cpp.o
[00:02:35] [pr release]   [99/100] Linking CXX shared library hostpolicy/standalone/libhostpolicy.so
[00:02:35] [pr release]   Stripping symbols from libhostpolicy.so into libhostpolicy.so.dbg
[00:02:35] [pr release]   [99/100] Install the project...
[00:02:35] [pr release]   -- Install configuration: "RELEASE"
[00:02:35] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/coreclr_delegates.h
[00:02:35] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/hostfxr.h
[00:02:35] [pr release]   -- Up-to-date: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/nethost.h
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libnethost.so.dbg
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libnethost.so
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libnethost.a
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libhostfxr.so.dbg
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libhostfxr.so
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libhostfxr.a
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libhostpolicy.so.dbg
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/libhostpolicy.so
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/apphost.dbg
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/apphost
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/dotnet.dbg
[00:02:35] [pr release]   -- Installing: /runner/runtime/artifacts/bin/linux-x64.Release/corehost/dotnet
[00:02:35] [pr release]   /runner/runtime/src/native/corehost
[00:02:37] [pr release]   Microsoft.DotNet.HotReload.Utils.Generator.Data -> /runner/runtime/artifacts/bin/Microsoft.DotNet.HotReload.Utils.Generator.Data/Release/net11.0/Microsoft.DotNet.HotReload.Utils.Generator.Data.dll
[00:02:37] [pr release]   Microsoft.DotNet.HotReload.Utils.Generator.Tasks -> /runner/runtime/artifacts/bin/Microsoft.DotNet.HotReload.Utils.Generator.Tasks/Release/net11.0/Microsoft.DotNet.HotReload.Utils.Generator.Tasks.dll
[00:02:37] [pr release]   installer.tasks -> /runner/runtime/artifacts/bin/installer.tasks/Release/installer.tasks.dll
[00:02:37] [pr release]   Microsoft.DotNet.HotReload.Utils.Generator -> /runner/runtime/artifacts/bin/Microsoft.DotNet.HotReload.Utils.Generator/Release/net11.0/Microsoft.DotNet.HotReload.Utils.Generator.dll
[00:02:37] [pr release]   Microsoft.DotNet.HotReload.Utils.Generator.Frontend -> /runner/runtime/artifacts/bin/Microsoft.DotNet.HotReload.Utils.Generator.Frontend/Release/net11.0/Microsoft.DotNet.HotReload.Utils.Generator.Frontend.dll
[00:02:37] [pr release]   Microsoft.DotNet.HotReload.Utils.Generator.BuildTool -> /runner/runtime/artifacts/bin/Microsoft.DotNet.HotReload.Utils.Generator.BuildTool/Release/net11.0/Microsoft.DotNet.HotReload.Utils.Generator.BuildTool.dll
[00:02:37] [pr release] 
[00:02:37] [pr release] Build succeeded.
[00:02:37] [pr release]     0 Warning(s)
[00:02:37] [pr release]     0 Error(s)
[00:02:37] [pr release] 
[00:02:37] [pr release] Time Elapsed 00:02:31.74
[00:02:37] [pr release] Running 'cp -r runtime/artifacts/bin/coreclr/linux.x64.Release/. artifacts-pr'
[00:02:37] [pr checked] Running 'bash build.sh clr.jit -c Checked' from 'runtime'
[00:02:37] [pr release] Running 'cp -r runtime/artifacts/bin/runtime/net11.0-linux-Release-x64/. artifacts-pr'
[00:02:38] [pr checked] 
[00:02:38] [pr checked]   Determining projects to restore...
[00:02:38] [pr checked]   Tool 'coverlet.console' (version '6.0.4') was restored. Available commands: coverlet
[00:02:38] [pr checked]   Tool 'dotnet-reportgenerator-globaltool' (version '5.4.3') was restored. Available commands: reportgenerator
[00:02:38] [pr checked]   Tool 'microsoft.dotnet.xharness.cli' (version '11.0.0-prerelease.26319.2') was restored. Available commands: xharness
[00:02:38] [pr checked]   Tool 'microsoft.visualstudio.slngen.tool' (version '12.0.15') was restored. Available commands: slngen
[00:02:38] [pr checked]   
[00:02:38] [pr checked]   Restore was successful.
[00:02:39] [pr checked]   All projects are up-to-date for restore.
[00:02:39] [pr checked]   Determining projects to restore...
[00:02:39] [pr checked]   Restored /runner/runtime/src/tasks/HelixTestTasks/HelixTestTasks.csproj (in 147 ms).
[00:02:39] [pr checked]   Restored /runner/runtime/src/tasks/Crossgen2Tasks/Crossgen2Tasks.csproj (in 147 ms).
[00:02:39] [pr checked]   5 of 7 projects are up-to-date for restore.
[00:02:39] [pr checked]   installer.tasks -> /runner/runtime/artifacts/bin/installer.tasks/Checked/installer.tasks.dll
[00:02:41] [pr checked]   HelixTestTasks -> /runner/runtime/artifacts/bin/HelixTestTasks/Checked/net11.0/HelixTestTasks.dll
[00:02:41] [pr checked]   Crossgen2Tasks -> /runner/runtime/artifacts/bin/Crossgen2Tasks/Checked/Crossgen2Tasks.dll
[00:02:41] [pr checked]   Executing "/runner/runtime/src/coreclr/build-runtime.sh" -x64 -checked -os linux -ninja -targetrid linux-x64 -cmakeargs "-DCLR_DOTNET_RID=linux-x64" -cmakeargs "-DCLR_DOTNET_HOST_PATH='/usr/lib/dotnet/dotnet'" -cmakeargs "-DFEATURE_DYNAMIC_CODE_COMPILED=1" -component jit 
[00:02:41] [pr checked]   Commencing CoreCLR Repo build
[00:02:41] [pr checked]   __TargetRid: linux-x64
[00:02:41] [pr checked]   Setting up directories for build
[00:02:41] [pr checked]   Checking prerequisites...
[00:02:41] [pr checked]   /usr/bin/ninja
[00:02:42] [pr checked]   Commencing build of "  jit " target in "CoreCLR component" for linux.x64.Checked in /runner/runtime/artifacts/obj/coreclr/linux.x64.Checked
[00:02:42] [pr checked]   Invoking "/runner/runtime/eng/native/gen-buildsys.sh" "/runner/runtime/src/coreclr" "/runner/runtime/artifacts/obj/coreclr/linux.x64.Checked" x64 linux clang Checked "ninja"  -DCLR_CMAKE_PGO_INSTRUMENT=0 -DCLR_CMAKE_OPTDATA_PATH= -DCLR_CMAKE_PGO_OPTIMIZE=0 -DCLI_CMAKE_FALLBACK_OS="linux" -DFEATURE_DISTRO_AGNOSTIC_SSL=1 -DFEATURE_DYNAMIC_CODE_COMPILED=1 -DCLR_DOTNET_HOST_PATH='/usr/lib/dotnet/dotnet' -DCLR_DOTNET_RID=linux-x64 
[00:02:42] [pr checked]   Not searching for unused variables given on the command line.
[00:02:42] [pr checked]   -- The linker identification is Ubuntu LLD 18.1.3 (compatible with GNU linkers)
[00:02:42] [pr checked]   Detected Linux x86_64
[00:02:42] [pr checked]   -- Using CMake version 3.28.3
[00:02:42] [pr checked]   -- ZLIB_HEADER_VERSION: 1.3.1
[00:02:42] [pr checked]   -- ZLIBNG_HEADER_VERSION: 2.2.5
[00:02:42] [pr checked]   -- Arch detected: 'x86_64'
[00:02:42] [pr checked]   -- Basearch of 'x86_64' has been detected as: 'x86'
[00:02:42] [pr checked]   -- Architecture-specific source files: arch/x86/x86_features.c;arch/x86/chunkset_sse2.c;arch/x86/compare256_sse2.c;arch/x86/slide_hash_sse2.c;arch/x86/adler32_ssse3.c;arch/x86/chunkset_ssse3.c;arch/x86/adler32_sse42.c;arch/x86/crc32_pclmulqdq.c;arch/x86/slide_hash_avx2.c;arch/x86/chunkset_avx2.c;arch/x86/compare256_avx2.c;arch/x86/adler32_avx2.c;arch/x86/adler32_avx512.c;arch/x86/chunkset_avx512.c;arch/x86/adler32_avx512_vnni.c;arch/x86/crc32_vpclmulqdq.c
[00:02:42] [pr checked]   -- The following features have been enabled:
[00:02:42] [pr checked]   
[00:02:42] [pr checked]    * CMAKE_BUILD_TYPE, Build type: CHECKED (selected)
[00:02:42] [pr checked]    * XSAVE, Support XSAVE intrinsics using "-mxsave"
[00:02:42] [pr checked]    * SSSE3_ADLER32, Support SSSE3-accelerated adler32, using "-mssse3"
[00:02:42] [pr checked]    * SSE42_CRC, Support SSE4.2 optimized adler32 hash generation, using "-msse4.2"
[00:02:42] [pr checked]    * PCLMUL_CRC, Support CRC hash generation using PCLMULQDQ, using "-msse4.2 -mpclmul"
[00:02:42] [pr checked]    * AVX2_SLIDEHASH, Support AVX2 optimized slide_hash, using "-mavx2 -mbmi2"
[00:02:42] [pr checked]    * AVX2_CHUNKSET, Support AVX2 optimized chunkset, using "-mavx2 -mbmi2"
[00:02:42] [pr checked]    * AVX2_COMPARE256, Support AVX2 optimized compare256, using "-mavx2 -mbmi2"
[00:02:42] [pr checked]    * AVX2_ADLER32, Support AVX2-accelerated adler32, using "-mavx2 -mbmi2"
[00:02:42] [pr checked]    * AVX512_ADLER32, Support AVX512-accelerated adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:02:42] [pr checked]    * AVX512_CHUNKSET, Support AVX512 optimized chunkset, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:02:42] [pr checked]    * AVX512VNNI_ADLER32, Support AVX512VNNI adler32, using "-mavx512f -mavx512dq -mavx512bw -mavx512vl -mavx512vnni -mbmi2 -mtune=cascadelake"
[00:02:42] [pr checked]    * VPCLMUL_CRC, Support CRC hash generation using VPCLMULQDQ, using "-mpclmul -mvpclmulqdq -mavx512f -mavx512f -mavx512dq -mavx512bw -mavx512vl -mbmi2 -mtune=cascadelake"
[00:02:42] [pr checked]    * WITH_GZFILEOP, Compile with support for gzFile related functions
[00:02:42] [pr checked]    * ZLIB_COMPAT, Compile with zlib compatible API
[00:02:42] [pr checked]    * WITH_SANITIZER, Enable sanitizer support
[00:02:42] [pr checked]    * WITH_GTEST, Build gtest_zlib
[00:02:42] [pr checked]    * WITH_OPTIM, Build with optimisation
[00:02:42] [pr checked]    * WITH_NEW_STRATEGIES, Use new strategies
[00:02:42] [pr checked]    * WITH_RUNTIME_CPU_DETECTION, Build with runtime CPU detection
[00:02:42] [pr checked]    * WITH_AVX2, Build with AVX2
[00:02:42] [pr checked]    * WITH_AVX512, Build with AVX512
[00:02:42] [pr checked]    * WITH_AVX512VNNI, Build with AVX512 VNNI
[00:02:42] [pr checked]    * WITH_SSE2, Build with SSE2
[00:02:42] [pr checked]    * WITH_SSSE3, Build with SSSE3
[00:02:42] [pr checked]    * WITH_SSE42, Build with SSE42
[00:02:42] [pr checked]    * WITH_PCLMULQDQ, Build with PCLMULQDQ
[00:02:42] [pr checked]    * WITH_VPCLMULQDQ, Build with VPCLMULQDQ
[00:02:42] [pr checked]   
[00:02:42] [pr checked]   -- The following OPTIONAL packages have been found:
[00:02:42] [pr checked]   
[00:02:42] [pr checked]    * OpenSSL
[00:02:42] [pr checked]   
[00:02:42] [pr checked]   -- The following features have been disabled:
[00:02:42] [pr checked]   
[00:02:42] [pr checked]    * ZLIB_SYMBOL_PREFIX, Publicly exported symbols DO NOT have a custom prefix
[00:02:42] [pr checked]    * ZLIB_ENABLE_TESTS, Build test binaries
[00:02:42] [pr checked]    * ZLIBNG_ENABLE_TESTS, Test zlib-ng specific API
[00:02:42] [pr checked]    * WITH_FUZZERS, Build test/fuzz
[00:02:42] [pr checked]    * WITH_BENCHMARKS, Build test/benchmarks
[00:02:42] [pr checked]    * WITH_BENCHMARK_APPS, Build application benchmarks
[00:02:42] [pr checked]    * WITH_NATIVE_INSTRUCTIONS, Instruct the compiler to use the full instruction set on this host (gcc/clang -march=native)
[00:02:42] [pr checked]    * WITH_MAINTAINER_WARNINGS, Build with project maintainer warnings
[00:02:42] [pr checked]    * WITH_CODE_COVERAGE, Enable code coverage reporting
[00:02:42] [pr checked]    * WITH_INFLATE_STRICT, Build with strict inflate distance checking
[00:02:42] [pr checked]    * WITH_INFLATE_ALLOW_INVALID_DIST, Build with zero fill for inflate invalid distances
[00:02:42] [pr checked]    * INSTALL_UTILS, Copy minigzip and minideflate during install
[00:02:42] [pr checked]   
[00:02:42] [pr checked]   -- The following OPTIONAL packages have not been found:
[00:02:42] [pr checked]   
[00:02:42] [pr checked]    * PkgConfig
[00:02:42] [pr checked]   
[00:02:42] [pr checked]   -- Build type is 'CHECKED'
[00:02:42] [pr checked]   -- Compiler is not EMSCRIPTEN
[00:02:43] [pr checked]   -- ZSTD VERSION: 1.5.7
[00:02:43] [pr checked]   -- CMAKE_INSTALL_PREFIX: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked
[00:02:43] [pr checked]   -- CMAKE_INSTALL_LIBDIR: lib
[00:02:43] [pr checked]   -- ZSTD_LEGACY_SUPPORT not defined!
[00:02:43] [pr checked]   -- ZSTD_MULTITHREAD_SUPPORT is disabled
[00:02:43] [pr checked]   -- OPENSSL_INCLUDE_DIR:    /usr/include
[00:02:43] [pr checked]   -- OPENSSL_CRYPTO_LIBRARY: /usr/lib/x86_64-linux-gnu/libcrypto.so
[00:02:43] [pr checked]   -- OPENSSL_SSL_LIBRARY:    /usr/lib/x86_64-linux-gnu/libssl.so
[00:02:43] [pr checked]   -- OPENSSL_VERSION:        3.0.13
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Using a stub cDAC contract descriptor
[00:02:43] [pr checked]   -- Configuring done (1.3s)
[00:02:44] [pr checked]   -- Generating done (0.3s)
[00:02:44] [pr checked]   -- Build files have been written to: /runner/runtime/artifacts/obj/coreclr/linux.x64.Checked
[00:02:44] [pr checked]   /runner/runtime/artifacts/obj/coreclr/linux.x64.Checked /runner/runtime/src/coreclr
[00:02:44] [pr checked]   Executing /usr/bin/ninja -j 32   jit 
[00:02:44] [pr checked]   [1/90] Building ASM object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/setcontext.S.o
[00:02:44] [pr checked]   [2/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/is_fpreg.c.o
[00:02:44] [pr checked]   [3/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lreg_states_iterate.c.o
[00:02:44] [pr checked]   [4/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Ldestroy_addr_space.c.o
[00:02:44] [pr checked]   [5/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_reg.c.o
[00:02:44] [pr checked]   [6/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lcreate_addr_space.c.o
[00:02:44] [pr checked]   [7/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/init.c.o
[00:02:44] [pr checked]   [8/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/regname.c.o
[00:02:44] [pr checked]   [9/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/backtrace.c.o
[00:02:44] [pr checked]   [10/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-cancel.c.o
[00:02:44] [pr checked]   [11/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-info-list.c.o
[00:02:44] [pr checked]   [12/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_accessors.c.o
[00:02:44] [pr checked]   [13/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_proc_name.c.o
[00:02:44] [pr checked]   [14/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lget_proc_info_in_range.c.o
[00:02:44] [pr checked]   [15/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lput_dynamic_unwind_info.c.o
[00:02:44] [pr checked]   [16/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_reg.c.o
[00:02:44] [pr checked]   [17/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_fpreg.c.o
[00:02:44] [pr checked]   [18/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_fpreg.c.o
[00:02:44] [pr checked]   [19/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lapply_reg_state.c.o
[00:02:44] [pr checked]   [20/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lglobal.c.o
[00:02:44] [pr checked]   [21/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/flush_cache.c.o
[00:02:44] [pr checked]   [22/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/mempool.c.o
[00:02:44] [pr checked]   [23/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/strerror.c.o
[00:02:44] [pr checked]   [24/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/dyn-register.c.o
[00:02:44] [pr checked]   [25/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Ldyn-extract.c.o
[00:02:44] [pr checked]   [26/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lfind_dynamic_proc_info.c.o
[00:02:44] [pr checked]   [27/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lget_proc_info_by_ip.c.o
[00:02:44] [pr checked]   [28/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_caching_policy.c.o
[00:02:44] [pr checked]   [29/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Lset_cache_size.c.o
[00:02:44] [pr checked]   [30/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lget_save_loc.c.o
[00:02:44] [pr checked]   [31/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit.c.o
[00:02:44] [pr checked]   [32/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Los-linux.c.o
[00:02:44] [pr checked]   [33/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/os-linux.c.o
[00:02:44] [pr checked]   [34/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdestroy_addr_space.c.o
[00:02:44] [pr checked]   [35/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_reg.c.o
[00:02:44] [pr checked]   [36/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit_remote.c.o
[00:02:44] [pr checked]   [37/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lget_proc_info.c.o
[00:02:44] [pr checked]   [38/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdyn-extract.c.o
[00:02:44] [pr checked]   [39/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_proc_info_by_ip.c.o
[00:02:44] [pr checked]   [40/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_fpreg.c.o
[00:02:44] [pr checked]   [41/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gapply_reg_state.c.o
[00:02:44] [pr checked]   [42/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_fpreg.c.o
[00:02:44] [pr checked]   [43/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_caching_policy.c.o
[00:02:44] [pr checked]   [44/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Greg_states_iterate.c.o
[00:02:44] [pr checked]   [45/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gcreate_addr_space.c.o
[00:02:44] [pr checked]   [46/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Linit_local.c.o
[00:02:44] [pr checked]   [47/90] Building ASM object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/getcontext.S.o
[00:02:44] [pr checked]   [48/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_proc_name.c.o
[00:02:44] [pr checked]   [49/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lstep.c.o
[00:02:44] [pr checked]   [50/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gos-linux.c.o
[00:02:44] [pr checked]   [51/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gaddress_validator.c.o
[00:02:44] [pr checked]   [52/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gget_save_loc.c.o
[00:02:44] [pr checked]   [53/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gglobal.c.o
[00:02:44] [pr checked]   [54/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lregs.c.o
[00:02:44] [pr checked]   [55/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gput_dynamic_unwind_info.c.o
[00:02:44] [pr checked]   [56/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gset_cache_size.c.o
[00:02:44] [pr checked]   [57/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit.c.o
[00:02:44] [pr checked]   [58/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lresume.c.o
[00:02:44] [pr checked]   [59/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gget_proc_info_in_range.c.o
[00:02:44] [pr checked]   [60/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gget_reg.c.o
[00:02:44] [pr checked]   [61/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gfind_dynamic_proc_info.c.o
[00:02:44] [pr checked]   [62/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/mi/Gdyn-remote.c.o
[00:02:44] [pr checked]   [63/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit_local.c.o
[00:02:44] [pr checked]   [64/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ginit_remote.c.o
[00:02:44] [pr checked]   [65/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gregs.c.o
[00:02:44] [pr checked]   [66/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gget_proc_info.c.o
[00:02:44] [pr checked]   [67/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gresume.c.o
[00:02:44] [pr checked]   [68/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gstash_frame.c.o
[00:02:44] [pr checked]   [69/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Ltrace.c.o
[00:02:44] [pr checked]   [70/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/global.c.o
[00:02:44] [pr checked]   [71/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfind_unwind_table.c.o
[00:02:44] [pr checked]   [72/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfind_unwind_table.c.o
[00:02:44] [pr checked]   [73/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gstep.c.o
[00:02:44] [pr checked]   [74/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Gtrace.c.o
[00:02:44] [pr checked]   [75/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gpe.c.o
[00:02:44] [pr checked]   [76/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/x86_64/Lstash_frame.c.o
[00:02:44] [pr checked]   [77/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfind_proc_info-lsb.c.o
[00:02:44] [pr checked]   [78/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lpe.c.o
[00:02:45] [pr checked]   [79/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lexpr.c.o
[00:02:45] [pr checked]   [80/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lfde.c.o
[00:02:45] [pr checked]   [81/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfind_proc_info-lsb.c.o
[00:02:45] [pr checked]   [82/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gfde.c.o
[00:02:45] [pr checked]   [83/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/elf64.c.o
[00:02:45] [pr checked]   [84/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gexpr.c.o
[00:02:45] [pr checked]   [85/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Gparser.c.o
[00:02:45] [pr checked]   [86/90] Building C object /runner/runtime/artifacts/obj/external/libunwind/CMakeFiles/libunwind.dir/runner/runtime/src/native/external/libunwind/src/dwarf/Lparser.c.o
[00:02:45] [pr checked]   [87/90] Linking CXX static library pal/src/libcoreclrpal.a
[00:02:45] [pr checked]   [88/90] Linking CXX shared library jit/libclrjit_unix_x64_x64.so
[00:02:45] [pr checked]   Stripping symbols from libclrjit_unix_x64_x64.so into libclrjit_unix_x64_x64.so.dbg
[00:02:45] [pr checked]   [89/90] Linking CXX shared library jit/libclrjit.so
[00:02:45] [pr checked]   Stripping symbols from libclrjit.so into libclrjit.so.dbg
[00:02:46] [pr checked]   [90/90] cd /runner/runtime/artifacts/obj/coreclr/linux.x64.Checked && /usr/bin/cmake -DCMAKE_INSTALL_COMPONENT=jit -DBUILD_TYPE=CHECKED -P /runner/runtime/artifacts/obj/coreclr/linux.x64.Checked/cmake_install.cmake
[00:02:46] [pr checked]   -- Install configuration: "CHECKED"
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/./libclrjit.so
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/./libclrjit.so.dbg
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/sharedFramework/libclrjit.so
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/sharedFramework/libclrjit.so.dbg
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/./libclrjit_unix_x64_x64.so
[00:02:46] [pr checked]   -- Installing: /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked/./libclrjit_unix_x64_x64.so.dbg
[00:02:46] [pr checked]   /runner/runtime/src/coreclr
[00:02:46] [pr checked]   Repo successfully built.
[00:02:46] [pr checked]   Product binaries are available at /runner/runtime/artifacts/bin/coreclr/linux.x64.Checked
[00:02:46] [pr checked] 
[00:02:46] [pr checked] Build succeeded.
[00:02:46] [pr checked]     0 Warning(s)
[00:02:46] [pr checked]     0 Error(s)
[00:02:46] [pr checked] 
[00:02:46] [pr checked] Time Elapsed 00:00:08.09
[00:02:46] [pr checked] Running 'cp -r runtime/artifacts/bin/coreclr/linux.x64.Checked/. clr-checked-pr'
[00:02:46] [jit-diff artifacts-pr] Running 'jitutils/bin/jit-diff diff --cctors --output jit-diffs/frameworks/pr --frameworks --pmi --core_root artifacts-pr --base clr-checked-pr'
[00:02:47] [jit-diff artifacts-pr] Beginning PMI CodeSize Diffs for System.Private.CoreLib.dll, framework assemblies
[00:03:41] [jit-diff artifacts-pr] Completed PMI CodeSize Diffs for System.Private.CoreLib.dll, framework assemblies [invoking .cctors] in 53.77s
[00:03:41] [jit-diff artifacts-pr] Diffs (if any) can be viewed by comparing: jit-diffs/frameworks/pr/dasmset_1/base jit-diffs/frameworks/pr/dasmset_1/diff
[00:03:41] [jit-diff artifacts-pr] 
[00:03:41] [jit-diff artifacts-pr] git diff --no-index --diff-filter=M --exit-code --numstat jit-diffs/frameworks/pr/dasmset_1/diff jit-diffs/frameworks/pr/dasmset_1/base
[00:03:41] [jit-diff artifacts-pr] 
[00:03:41] [jit-diffs-main.zip] Running 'zip -3 -r /runner/jit-diffs-main.zip main' from '/runner/jit-diffs/frameworks'
[00:03:41] [jit-diffs-pr.zip] Running 'zip -3 -r /runner/jit-diffs-pr.zip pr' from '/runner/jit-diffs/frameworks'
[00:03:41] [jit-analyze] Running 'jitutils/bin/jit-analyze -b diffs-main-combined -d diffs-pr-combined -r -c 100'
[00:03:49] Uploading 'jit-diffs-main.zip'
[00:03:49] Uploading 'jit-diffs-pr.zip'
[00:04:05]* Saved artifact 'jit-diffs-main.zip' to https://mihubot.xyz/r/FSGF0ETA (158 MB)
[00:04:05]* Saved artifact 'jit-diffs-pr.zip' to https://mihubot.xyz/r/FSGF0E2A (158 MB)
[00:04:23] [jit-analyze] Found 108 files with textual diffs.
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Summary of Code Size diffs:
[00:04:23] [jit-analyze] (Lower is better)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Total bytes of base: 46005361
[00:04:23] [jit-analyze] Total bytes of diff: 46000854
[00:04:23] [jit-analyze] Total bytes of delta: -4507 (-0.01 % of base)
[00:04:23] [jit-analyze] Total relative delta: 3.15
[00:04:23] [jit-analyze]     diff is an improvement.
[00:04:23] [jit-analyze]     relative diff is a regression.
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top file regressions (bytes):
[00:04:23] [jit-analyze]          688 : System.Private.Xml.Linq.dasm (0.34 % of base)
[00:04:23] [jit-analyze]          265 : System.Configuration.ConfigurationManager.dasm (0.07 % of base)
[00:04:23] [jit-analyze]          115 : System.Security.Cryptography.Xml.dasm (0.06 % of base)
[00:04:23] [jit-analyze]          114 : System.Runtime.Serialization.Formatters.dasm (0.43 % of base)
[00:04:23] [jit-analyze]            4 : System.Net.Requests.dasm (0.00 % of base)
[00:04:23] [jit-analyze]            3 : Microsoft.CSharp.dasm (0.00 % of base)
[00:04:23] [jit-analyze]            3 : System.Runtime.Serialization.Schema.dasm (0.00 % of base)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top file improvements (bytes):
[00:04:23] [jit-analyze]        -1730 : System.Private.Xml.dasm (-0.04 % of base)
[00:04:23] [jit-analyze]        -1271 : System.Data.Common.dasm (-0.08 % of base)
[00:04:23] [jit-analyze]        -1065 : System.Private.CoreLib.dasm (-0.01 % of base)
[00:04:23] [jit-analyze]         -613 : System.Collections.dasm (-0.09 % of base)
[00:04:23] [jit-analyze]         -316 : System.Private.DataContractSerialization.dasm (-0.03 % of base)
[00:04:23] [jit-analyze]         -258 : System.ComponentModel.Composition.Registration.dasm (-0.23 % of base)
[00:04:23] [jit-analyze]         -210 : System.CodeDom.dasm (-0.10 % of base)
[00:04:23] [jit-analyze]         -133 : System.DirectoryServices.Protocols.dasm (-0.09 % of base)
[00:04:23] [jit-analyze]          -42 : System.Data.Odbc.dasm (-0.02 % of base)
[00:04:23] [jit-analyze]          -36 : System.ComponentModel.TypeConverter.dasm (-0.01 % of base)
[00:04:23] [jit-analyze]          -25 : System.ServiceModel.Syndication.dasm (-0.02 % of base)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] 18 total files with Code Size differences (11 improved, 7 regressed), 242 unchanged.
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top method regressions (bytes):
[00:04:23] [jit-analyze]          449 (10.84 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,int):this (FullOpts)
[00:04:23] [jit-analyze]          269 (37.10 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this (FullOpts)
[00:04:23] [jit-analyze]          267 (42.86 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this (FullOpts)
[00:04:23] [jit-analyze]          266 (295.56 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathSelectElements(System.Xml.Linq.XNode,System.String):System.Collections.Generic.IEnumerable`1[System.Xml.Linq.XElement] (FullOpts)
[00:04:23] [jit-analyze]          250 (34.11 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this (FullOpts)
[00:04:23] [jit-analyze]          248 (33.97 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]          230 (111.11 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathSelectElement(System.Xml.Linq.XNode,System.String):System.Xml.Linq.XElement (FullOpts)
[00:04:23] [jit-analyze]          227 (354.69 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathEvaluate(System.Xml.Linq.XNode,System.String):System.Object (FullOpts)
[00:04:23] [jit-analyze]          222 (33.94 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this (FullOpts)
[00:04:23] [jit-analyze]          197 (29.94 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):bool:this (FullOpts)
[00:04:23] [jit-analyze]          176 (15.60 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]          144 (45.28 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:ResolveObjectReference(System.Runtime.Serialization.ObjectHolder):bool:this (FullOpts)
[00:04:23] [jit-analyze]          138 (5.35 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]          135 (8.04 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportTypeMembers(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.INameScope,byref,bool,bool):System.Xml.Serialization.MemberMapping[]:this (FullOpts)
[00:04:23] [jit-analyze]          111 (173.44 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationValues:set_Item(System.String,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          102 (74.45 % of base) : System.Data.Common.dasm - System.Xml.XmlDataDocument:FoliateIfDataPointers(System.Xml.XmlElement):this (FullOpts)
[00:04:23] [jit-analyze]           91 (20.27 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,bool):this (FullOpts)
[00:04:23] [jit-analyze]           72 (8.87 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.CanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument) (FullOpts)
[00:04:23] [jit-analyze]           72 (8.87 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.ExcCanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument) (FullOpts)
[00:04:23] [jit-analyze]           63 (0.77 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionPreprocessor:Preprocess(System.Xml.Schema.XmlSchema,System.String,int):this (FullOpts)
[00:04:23] [jit-analyze]           63 (2.34 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.CodeGenerator:Ldc(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]           50 (1.31 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Preprocessor:PreprocessParticle(System.Xml.Schema.XmlSchemaParticle):this (FullOpts)
[00:04:23] [jit-analyze]           49 (6.23 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:get_Item(System.Configuration.ConfigurationProperty):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]           49 (11.16 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):this (FullOpts)
[00:04:23] [jit-analyze]           49 (11.95 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):this (FullOpts)
[00:04:23] [jit-analyze]           34 (0.77 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.Reference:LoadXml(System.Xml.XmlElement):this (FullOpts)
[00:04:23] [jit-analyze]           32 (0.96 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleDataSet(System.Xml.Schema.XmlSchemaElement,bool):this (FullOpts)
[00:04:23] [jit-analyze]           32 (7.05 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this (FullOpts)
[00:04:23] [jit-analyze]           28 (5.21 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[short](short,System.String):this (FullOpts)
[00:04:23] [jit-analyze]           27 (4.35 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportSchemaType(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this (FullOpts)
[00:04:23] [jit-analyze]           26 (2.49 % of base) : System.Data.Common.dasm - System.Data.ConstraintCollection:BaseRemove(System.Data.Constraint):this (FullOpts)
[00:04:23] [jit-analyze]           26 (1.40 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:WritePrimitive(System.String,System.String,System.String,System.Object,System.String,System.Xml.Serialization.TypeMapping,bool,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]           24 (2.77 % of base) : System.Private.Xml.dasm - MS.Internal.Xml.XPath.ExtensionQuery:ProcessResult(System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]           24 (8.99 % of base) : System.Private.Xml.dasm - System.Xml.XmlAttributeCollection:SetNamedItem(System.Xml.XmlNode):System.Xml.XmlNode:this (FullOpts)
[00:04:23] [jit-analyze]           22 (3.90 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[short](short,System.String):this (FullOpts)
[00:04:23] [jit-analyze]           21 (3.87 % of base) : System.Data.Common.dasm - System.Data.XDRSchema:LoadSchema(System.Xml.XmlElement,System.Data.DataSet):this (FullOpts)
[00:04:23] [jit-analyze]           21 (9.17 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float],System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]           21 (9.38 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float]):bool:this (FullOpts)
[00:04:23] [jit-analyze]           20 (3.75 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int,System.String):this (FullOpts)
[00:04:23] [jit-analyze]           18 (64.29 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.InheritanceAttribute:IsDefaultAttribute():bool:this (FullOpts)
[00:04:23] [jit-analyze]           16 (1.72 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:IsDatasetParticle(System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]           16 (4.28 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportRootIfNecessary(System.Xml.Serialization.TypeScope):this (FullOpts)
[00:04:23] [jit-analyze]           15 (0.94 % of base) : System.Data.Common.dasm - System.Data.UnaryNode:EvalUnaryOp(int,System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]           15 (2.01 % of base) : System.Data.Common.dasm - System.Data.XDRSchema:HandleTypeNode(System.Xml.XmlElement,System.Data.DataTable,System.Collections.ArrayList):this (FullOpts)
[00:04:23] [jit-analyze]           13 (3.82 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[byte](byte):this (FullOpts)
[00:04:23] [jit-analyze]           12 (0.58 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemas:GetSchemaItem(System.Xml.Schema.XmlSchemaObject,System.String,System.String):System.String (FullOpts)
[00:04:23] [jit-analyze]           11 (2.39 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:MethodIsOverloaded(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration):bool (FullOpts)
[00:04:23] [jit-analyze]           11 (2.36 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            9 (0.91 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:RegisterObject(System.Object,long,System.Runtime.Serialization.SerializationInfo,long,System.Reflection.MemberInfo,int[]):this (FullOpts)
[00:04:23] [jit-analyze]            9 (2.22 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigC14NTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]            9 (2.11 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigExcC14NTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]            8 (0.40 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportStructType(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Type,bool):System.Xml.Serialization.StructMapping:this (FullOpts)
[00:04:23] [jit-analyze]            7 (1.21 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[long](long,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            7 (0.34 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:BuildParticleContentModel(System.Xml.Schema.ParticleContentValidator,System.Xml.Schema.XmlSchemaParticle):bool (FullOpts)
[00:04:23] [jit-analyze]            7 (0.12 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterILGen:WriteMember(System.Xml.Serialization.SourceInfo,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            6 (0.29 % of base) : System.Data.Common.dasm - System.Data.XmlTreeGen:AddXdoProperty(System.ComponentModel.PropertyDescriptor,System.Object,System.Xml.XmlElement):this (FullOpts)
[00:04:23] [jit-analyze]            6 (0.46 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportDefaultValue(System.Xml.Serialization.TypeMapping,System.Object):System.String (FullOpts)
[00:04:23] [jit-analyze]            6 (0.75 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.XsltOld.Compiler:ResolveDocument(System.Uri):System.Xml.Xsl.XsltOld.NavigatorInput:this (FullOpts)
[00:04:23] [jit-analyze]            6 (0.67 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.XsltOld.Processor:GetNavigator(System.Uri):System.Xml.XPath.XPathNavigator:this (FullOpts)
[00:04:23] [jit-analyze]            5 (4.46 % of base) : System.Private.CoreLib.dasm - System.Collections.Hashtable:get_comparer():System.Collections.IComparer:this (FullOpts)
[00:04:23] [jit-analyze]            5 (4.46 % of base) : System.Private.CoreLib.dasm - System.Collections.Hashtable:get_hcp():System.Collections.IHashCodeProvider:this (FullOpts)
[00:04:23] [jit-analyze]            5 (9.09 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.StringConverter:ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]            5 (1.35 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[byte](byte):this (FullOpts)
[00:04:23] [jit-analyze]            5 (0.93 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportElementMapping(System.Xml.Schema.XmlSchemaElement,System.Xml.Serialization.Mapping,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]            5 (1.21 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportMapping(System.Xml.Serialization.Mapping,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]            5 (3.52 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.19 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:SerializeElement(System.Xml.XmlWriter,bool):bool:this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.67 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleRelations(System.Xml.Schema.XmlSchemaAnnotation,bool):this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.42 % of base) : System.Net.Requests.dasm - System.Net.FtpWebRequest:SetException(System.Exception):this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.51 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaHelper:AddSchemaImport(System.String,System.Xml.Schema.XmlSchema) (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateEvents(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateProperties(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.28 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateSnippetMembers(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.34 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (1.15 % of base) : Microsoft.CSharp.dasm - Microsoft.CSharp.RuntimeBinder.RuntimeBinderExtensions:IsTypeParameterEquivalentToTypeInst(System.Type,System.Type,System.Reflection.MemberInfo):bool (FullOpts)
[00:04:23] [jit-analyze]            3 (0.32 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.34 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (1.89 % of base) : System.Data.Common.dasm - System.Data.DataSet:FindTable(System.Data.DataTable,System.ComponentModel.PropertyDescriptor[],int):System.Data.DataTable (FullOpts)
[00:04:23] [jit-analyze]            3 (0.68 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):bool:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.59 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.ExceptionUtility:IsFatal(System.Exception):bool (FullOpts)
[00:04:23] [jit-analyze]            3 (0.58 % of base) : System.Runtime.Serialization.Schema.dasm - System.Runtime.Serialization.Fx:IsFatal(System.Exception):bool (FullOpts)
[00:04:23] [jit-analyze]            3 (0.15 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.EncryptedXml:DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey):byte[]:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.11 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CalculateEffectiveTotalRange(System.Xml.Schema.XmlSchemaParticle,byref,byref) (FullOpts)
[00:04:23] [jit-analyze]            3 (0.17 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.ReflectionXmlSerializationWriter:WritePrimitiveValue(System.Xml.Serialization.TypeDesc,System.Object,byref):bool:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.57 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:GetTypeItems(System.Xml.Schema.XmlSchemaType):System.Xml.Serialization.XmlSchemaImporter+TypeItems:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.27 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaObjectComparer:NameOf(System.Xml.Schema.XmlSchemaObject):System.Xml.XmlQualifiedName (FullOpts)
[00:04:23] [jit-analyze]            3 (0.47 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemas:Prepare(System.Xml.Schema.XmlSchema) (FullOpts)
[00:04:23] [jit-analyze]            3 (0.59 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.Runtime.XmlQueryContext:.ctor(System.Xml.Xsl.Runtime.XmlQueryRuntime,System.Object,System.Xml.XmlResolver,System.Xml.Xsl.XsltArgumentList,System.Xml.Xsl.Runtime.WhitespaceRuleLookup):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.22 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateEvents(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.22 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateProperties(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.20 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateSnippetMembers(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.13 % of base) : System.Data.Common.dasm - System.Data.Select:AnalyzeExpression(System.Data.BinaryNode):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.50 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.63 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.77 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[double](double,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top method improvements (bytes):
[00:04:23] [jit-analyze]        -1117 (-11.62 % of base) : System.Data.Common.dasm - System.Data.XmlTreeGen:SchemaTree(System.Xml.XmlDocument,System.Xml.XmlWriter,System.Data.DataSet,System.Data.DataTable,bool):this (FullOpts)
[00:04:23] [jit-analyze]         -841 (-30.36 % of base) : System.Private.CoreLib.dasm - System.Diagnostics.Tracing.EventProvider:EncodeObject(byref,byref,byref,byref):System.Object (FullOpts)
[00:04:23] [jit-analyze]         -580 (-7.24 % of base) : System.Private.CoreLib.dasm - System.Diagnostics.Tracing.ManifestBuilder:CreateManifestString():System.String:this (FullOpts)
[00:04:23] [jit-analyze]         -258 (-17.82 % of base) : System.ComponentModel.Composition.Registration.dasm - System.ComponentModel.Composition.Registration.RegistrationBuilder:GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable`1[System.Object]):System.Collections.Generic.IEnumerable`1[System.Object]:this (FullOpts)
[00:04:23] [jit-analyze]         -246 (-48.52 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XmlSchemaComplexType:get_DerivedFrom():System.Xml.XmlQualifiedName:this (FullOpts)
[00:04:23] [jit-analyze]         -207 (-7.69 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this (FullOpts)
[00:04:23] [jit-analyze]         -189 (-3.95 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:WriteMember(System.String,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.String):this (FullOpts)
[00:04:23] [jit-analyze]         -178 (-8.28 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportAttributeAccessor(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.AttributeAccessor,bool,System.String):this (FullOpts)
[00:04:23] [jit-analyze]         -164 (-6.09 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this (FullOpts)
[00:04:23] [jit-analyze]         -123 (-6.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportTypeMembers(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.MemberMapping[],System.String,System.String,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]         -117 (-11.32 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ApplicationSettingsBase:get_Initializer():System.Configuration.SettingsProperty:this (FullOpts)
[00:04:23] [jit-analyze]         -117 (-1.18 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:DeserializeElement(System.Xml.XmlReader,bool):this (FullOpts)
[00:04:23] [jit-analyze]         -106 (-25.00 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaExporter:ExportDataContract(System.Runtime.Serialization.DataContracts.DataContract):this (FullOpts)
[00:04:23] [jit-analyze]         -105 (-8.37 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateBegin():this (FullOpts)
[00:04:23] [jit-analyze]         -104 (-14.00 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Preprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]         -104 (-14.00 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionPreprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]         -100 (-6.98 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.SettingsPropertyValue:Deserialize():System.Object:this (FullOpts)
[00:04:23] [jit-analyze]          -97 (-7.02 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.Json.XmlJsonWriter:WritePrimitiveValue(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -95 (-5.31 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-20.80 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-11.12 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SchemaObjectWriter:Write36_XmlSchemaSimpleContent(System.Xml.Schema.XmlSchemaSimpleContent):this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-8.41 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SchemaObjectWriter:Write41_XmlSchemaComplexContent(System.Xml.Schema.XmlSchemaComplexContent):this (FullOpts)
[00:04:23] [jit-analyze]          -92 (-29.49 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]          -90 (-4.78 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]          -90 (-4.33 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]          -87 (-30.63 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -87 (-30.53 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.37 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.41 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.37 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.79 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-30.00 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.79 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-28.77 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-0.45 % of base) : System.Data.Common.dasm - System.Data.BinaryNode:EvalBinaryOp(int,System.Data.ExpressionNode,System.Data.ExpressionNode,System.Data.DataRow,int,int[]):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]          -82 (-7.99 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ApplicationSettingsBase:CreateSetting(System.Reflection.PropertyInfo):System.Configuration.SettingsProperty:this (FullOpts)
[00:04:23] [jit-analyze]          -75 (-1.45 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:SendRequestHelper(System.DirectoryServices.Protocols.DirectoryRequest,byref):int:this (FullOpts)
[00:04:23] [jit-analyze]          -73 (-25.17 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -73 (-17.42 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -72 (-21.95 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -71 (-7.84 % of base) : System.Data.Common.dasm - System.Data.ConstraintCollection:Add(System.Data.Constraint,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -70 (-19.94 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -70 (-24.05 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -67 (-26.48 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -66 (-26.19 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -64 (-9.95 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -64 (-26.56 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]          -63 (-13.88 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -61 (-11.98 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -60 (-2.46 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.TransformChain:TransformToOctetStream(System.Object,System.Xml.XmlResolver,System.String):System.IO.Stream:this (FullOpts)
[00:04:23] [jit-analyze]          -58 (-14.65 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -52 (-3.88 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -50 (-5.17 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -50 (-8.93 % of base) : System.Data.Common.dasm - System.Data.DataExpression:ToBoolean(System.Object):bool (FullOpts)
[00:04:23] [jit-analyze]          -47 (-6.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:KeepXmlnsDeclarations(System.Xml.Schema.XmlSchemaType,byref):bool (FullOpts)
[00:04:23] [jit-analyze]          -45 (-7.92 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XsdBuilder:BuildIdentityConstraint_Refer(System.Xml.Schema.XsdBuilder,System.String) (FullOpts)
[00:04:23] [jit-analyze]          -44 (-6.39 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.PropertyDescriptorCollection:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -44 (-2.16 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.ReflectionXmlSerializationWriter:WriteElement(System.Object,System.Xml.Serialization.ElementAccessor,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -43 (-13.11 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -42 (-2.97 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleComplexType(System.Xml.Schema.XmlSchemaComplexType,System.Data.DataTable,System.Collections.ArrayList,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -42 (-2.89 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaImporter:CheckISerializableBase(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaSequence,System.Xml.Schema.XmlSchemaObjectCollection) (FullOpts)
[00:04:23] [jit-analyze]          -41 (-7.09 % of base) : System.Data.Odbc.dasm - System.Data.Odbc.OdbcParameter:GetColumnSize(System.Object,int,int):int:this (FullOpts)
[00:04:23] [jit-analyze]          -41 (-3.62 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateBegin():this (FullOpts)
[00:04:23] [jit-analyze]          -40 (-1.69 % of base) : System.Private.CoreLib.dasm - System.Reflection.Emit.SignatureHelper:AddOneArgTypeHelperWorker(System.Type,bool,System.Reflection.Emit.DynamicScope):this (FullOpts)
[00:04:23] [jit-analyze]          -37 (-12.98 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[double](double,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -37 (-2.33 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportArrayMapping(System.Xml.Schema.XmlSchemaType,System.String,System.String):System.Xml.Serialization.ArrayMapping:this (FullOpts)
[00:04:23] [jit-analyze]          -35 (-4.00 % of base) : System.Private.DataContractSerialization.dasm - System.Xml.XmlBaseWriter:WritePrimitiveValue(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -35 (-8.10 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.XPathEvaluator:Evaluate[System.__Canon](System.Xml.Linq.XNode,System.String,System.Xml.IXmlNamespaceResolver):System.Object (FullOpts)
[00:04:23] [jit-analyze]          -34 (-2.73 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.XmlObjectSerializerReadContext:ReadExtensionDataValue(System.Runtime.Serialization.XmlReaderDelegator):System.Runtime.Serialization.IDataNode:this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-14.86 % of base) : System.Data.Common.dasm - System.Data.DataViewManager:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[]):System.ComponentModel.PropertyDescriptorCollection:this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-23.24 % of base) : System.Data.Common.dasm - System.Data.DataViewManager:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[]):System.String:this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-13.75 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:BaseTypeName(System.Xml.Schema.XmlSchemaSimpleType):System.Xml.XmlQualifiedName (FullOpts)
[00:04:23] [jit-analyze]          -33 (-0.93 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterILGen:WriteElement(System.Xml.Serialization.SourceInfo,System.Xml.Serialization.ElementAccessor,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -30 (-17.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]          -29 (-3.68 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:DoFixups():this (FullOpts)
[00:04:23] [jit-analyze]          -28 (-0.94 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleElementColumn(System.Xml.Schema.XmlSchemaElement,System.Data.DataTable,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -27 (-0.52 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderCodeGen:WriteMemberElementsIf(System.Xml.Serialization.XmlSerializationReaderCodeGen+Member[],System.Xml.Serialization.XmlSerializationReaderCodeGen+Member,System.String,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -26 (-3.02 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigXsltTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -25 (-6.11 % of base) : System.ServiceModel.Syndication.dasm - System.ServiceModel.Syndication.SyndicationElementExtensionCollection:Add(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-3.87 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:EndSendRequest(System.IAsyncResult):System.DirectoryServices.Protocols.DirectoryResponse:this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-2.01 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-2.01 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-0.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportEnumeratedDataType(System.Xml.Schema.XmlSchemaSimpleType,System.String,System.String,int,bool):System.Xml.Serialization.TypeMapping:this (FullOpts)
[00:04:23] [jit-analyze]          -21 (-26.92 % of base) : System.Data.Common.dasm - System.Data.UniqueConstraint:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -21 (-3.58 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:Abort(System.IAsyncResult):this (FullOpts)
[00:04:23] [jit-analyze]          -20 (-1.10 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlReflectionImporter:ReconcileAccessor(System.Xml.Serialization.Accessor,System.Xml.Serialization.NameTable):System.Xml.Serialization.Accessor:this (FullOpts)
[00:04:23] [jit-analyze]          -19 (-0.50 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionPreprocessor:PreprocessParticle(System.Xml.Schema.XmlSchemaParticle):this (FullOpts)
[00:04:23] [jit-analyze]          -19 (-1.13 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterILGen:WritePrimitive(System.String,System.String,System.String,System.Object,System.Xml.Serialization.SourceInfo,System.Xml.Serialization.TypeMapping,bool,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -18 (-0.24 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:WriteElement(System.String,System.Xml.Serialization.ElementAccessor,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -17 (-20.99 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XmlSchemaSimpleType:get_DerivedFrom():System.Xml.XmlQualifiedName:this (FullOpts)
[00:04:23] [jit-analyze]          -16 (-3.29 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int):this (FullOpts)
[00:04:23] [jit-analyze]          -15 (-1.93 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SoapReflectionImporter:CreateNullableMapping(System.Xml.Serialization.TypeMapping,System.Type):System.Xml.Serialization.NullableMapping:this (FullOpts)
[00:04:23] [jit-analyze]          -14 (-0.59 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:BuildAttributes(System.Collections.CollectionBase,System.Collections.ArrayList):System.DirectoryServices.Protocols.LdapMod[] (FullOpts)
[00:04:23] [jit-analyze]          -13 (-1.43 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.ReflectionXmlSerializationWriter:WriteMember(System.Object,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -13 (-1.09 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportGroupMembers(System.Xml.Schema.XmlSchemaParticle,System.String,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.INameScope,System.String,bool,byref,byref,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -11 (-1.01 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.EnumConverter:ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]          -11 (-0.22 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Preprocessor:PreprocessComplexType(System.Xml.Schema.XmlSchemaComplexType,bool):this (FullOpts)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top method regressions (percentages):
[00:04:23] [jit-analyze]          227 (354.69 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathEvaluate(System.Xml.Linq.XNode,System.String):System.Object (FullOpts)
[00:04:23] [jit-analyze]          266 (295.56 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathSelectElements(System.Xml.Linq.XNode,System.String):System.Collections.Generic.IEnumerable`1[System.Xml.Linq.XElement] (FullOpts)
[00:04:23] [jit-analyze]          111 (173.44 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationValues:set_Item(System.String,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          230 (111.11 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.Extensions:XPathSelectElement(System.Xml.Linq.XNode,System.String):System.Xml.Linq.XElement (FullOpts)
[00:04:23] [jit-analyze]          102 (74.45 % of base) : System.Data.Common.dasm - System.Xml.XmlDataDocument:FoliateIfDataPointers(System.Xml.XmlElement):this (FullOpts)
[00:04:23] [jit-analyze]           18 (64.29 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.InheritanceAttribute:IsDefaultAttribute():bool:this (FullOpts)
[00:04:23] [jit-analyze]          144 (45.28 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:ResolveObjectReference(System.Runtime.Serialization.ObjectHolder):bool:this (FullOpts)
[00:04:23] [jit-analyze]          267 (42.86 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this (FullOpts)
[00:04:23] [jit-analyze]          269 (37.10 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this (FullOpts)
[00:04:23] [jit-analyze]          250 (34.11 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this (FullOpts)
[00:04:23] [jit-analyze]          248 (33.97 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]          222 (33.94 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this (FullOpts)
[00:04:23] [jit-analyze]          197 (29.94 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):bool:this (FullOpts)
[00:04:23] [jit-analyze]           91 (20.27 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,bool):this (FullOpts)
[00:04:23] [jit-analyze]          176 (15.60 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]           49 (11.95 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):this (FullOpts)
[00:04:23] [jit-analyze]           49 (11.16 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          449 (10.84 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,int):this (FullOpts)
[00:04:23] [jit-analyze]           21 (9.38 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float]):bool:this (FullOpts)
[00:04:23] [jit-analyze]           21 (9.17 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float],System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            5 (9.09 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.StringConverter:ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]           24 (8.99 % of base) : System.Private.Xml.dasm - System.Xml.XmlAttributeCollection:SetNamedItem(System.Xml.XmlNode):System.Xml.XmlNode:this (FullOpts)
[00:04:23] [jit-analyze]           72 (8.87 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.CanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument) (FullOpts)
[00:04:23] [jit-analyze]           72 (8.87 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.ExcCanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument) (FullOpts)
[00:04:23] [jit-analyze]          135 (8.04 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportTypeMembers(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.INameScope,byref,bool,bool):System.Xml.Serialization.MemberMapping[]:this (FullOpts)
[00:04:23] [jit-analyze]           32 (7.05 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this (FullOpts)
[00:04:23] [jit-analyze]           49 (6.23 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationElement:get_Item(System.Configuration.ConfigurationProperty):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]          138 (5.35 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]           28 (5.21 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[short](short,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            5 (4.46 % of base) : System.Private.CoreLib.dasm - System.Collections.Hashtable:get_comparer():System.Collections.IComparer:this (FullOpts)
[00:04:23] [jit-analyze]            5 (4.46 % of base) : System.Private.CoreLib.dasm - System.Collections.Hashtable:get_hcp():System.Collections.IHashCodeProvider:this (FullOpts)
[00:04:23] [jit-analyze]           27 (4.35 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportSchemaType(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this (FullOpts)
[00:04:23] [jit-analyze]           16 (4.28 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportRootIfNecessary(System.Xml.Serialization.TypeScope):this (FullOpts)
[00:04:23] [jit-analyze]           22 (3.90 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[short](short,System.String):this (FullOpts)
[00:04:23] [jit-analyze]           21 (3.87 % of base) : System.Data.Common.dasm - System.Data.XDRSchema:LoadSchema(System.Xml.XmlElement,System.Data.DataSet):this (FullOpts)
[00:04:23] [jit-analyze]           13 (3.82 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[byte](byte):this (FullOpts)
[00:04:23] [jit-analyze]           20 (3.75 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            5 (3.52 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]           24 (2.77 % of base) : System.Private.Xml.dasm - MS.Internal.Xml.XPath.ExtensionQuery:ProcessResult(System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]           26 (2.49 % of base) : System.Data.Common.dasm - System.Data.ConstraintCollection:BaseRemove(System.Data.Constraint):this (FullOpts)
[00:04:23] [jit-analyze]           11 (2.39 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:MethodIsOverloaded(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration):bool (FullOpts)
[00:04:23] [jit-analyze]           11 (2.36 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]           63 (2.34 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.CodeGenerator:Ldc(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]            9 (2.22 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigC14NTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]            9 (2.11 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigExcC14NTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]           15 (2.01 % of base) : System.Data.Common.dasm - System.Data.XDRSchema:HandleTypeNode(System.Xml.XmlElement,System.Data.DataTable,System.Collections.ArrayList):this (FullOpts)
[00:04:23] [jit-analyze]            3 (1.89 % of base) : System.Data.Common.dasm - System.Data.DataSet:FindTable(System.Data.DataTable,System.ComponentModel.PropertyDescriptor[],int):System.Data.DataTable (FullOpts)
[00:04:23] [jit-analyze]           16 (1.72 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:IsDatasetParticle(System.Xml.Schema.XmlSchemaParticle):bool:this (FullOpts)
[00:04:23] [jit-analyze]            1 (1.67 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.CanonicalXml:MarkNodeAsIncluded(System.Xml.XmlNode) (FullOpts)
[00:04:23] [jit-analyze]            1 (1.67 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.ExcCanonicalXml:MarkNodeAsIncluded(System.Xml.XmlNode) (FullOpts)
[00:04:23] [jit-analyze]           26 (1.40 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:WritePrimitive(System.String,System.String,System.String,System.Object,System.String,System.Xml.Serialization.TypeMapping,bool,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]            2 (1.35 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float]):this (FullOpts)
[00:04:23] [jit-analyze]            5 (1.35 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[byte](byte):this (FullOpts)
[00:04:23] [jit-analyze]           50 (1.31 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Preprocessor:PreprocessParticle(System.Xml.Schema.XmlSchemaParticle):this (FullOpts)
[00:04:23] [jit-analyze]            7 (1.21 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[long](long,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            5 (1.21 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportMapping(System.Xml.Serialization.Mapping,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]            3 (1.15 % of base) : Microsoft.CSharp.dasm - Microsoft.CSharp.RuntimeBinder.RuntimeBinderExtensions:IsTypeParameterEquivalentToTypeInst(System.Type,System.Type,System.Reflection.MemberInfo):bool (FullOpts)
[00:04:23] [jit-analyze]           32 (0.96 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleDataSet(System.Xml.Schema.XmlSchemaElement,bool):this (FullOpts)
[00:04:23] [jit-analyze]           15 (0.94 % of base) : System.Data.Common.dasm - System.Data.UnaryNode:EvalUnaryOp(int,System.Object):System.Object:this (FullOpts)
[00:04:23] [jit-analyze]            5 (0.93 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportElementMapping(System.Xml.Schema.XmlSchemaElement,System.Xml.Serialization.Mapping,System.String,bool):this (FullOpts)
[00:04:23] [jit-analyze]            9 (0.91 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:RegisterObject(System.Object,long,System.Runtime.Serialization.SerializationInfo,long,System.Reflection.MemberInfo,int[]):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.90 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[double](double):bool:this (FullOpts)
[00:04:23] [jit-analyze]            1 (0.83 % of base) : System.Data.Odbc.dasm - System.Data.Odbc.OdbcParameter:ValueScaleCore(System.Object):byte (FullOpts)
[00:04:23] [jit-analyze]            2 (0.77 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[double](double,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]           34 (0.77 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.Reference:LoadXml(System.Xml.XmlElement):this (FullOpts)
[00:04:23] [jit-analyze]           63 (0.77 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionPreprocessor:Preprocess(System.Xml.Schema.XmlSchema,System.String,int):this (FullOpts)
[00:04:23] [jit-analyze]            6 (0.75 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.XsltOld.Compiler:ResolveDocument(System.Uri):System.Xml.Xsl.XsltOld.NavigatorInput:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.68 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):bool:this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.67 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleRelations(System.Xml.Schema.XmlSchemaAnnotation,bool):this (FullOpts)
[00:04:23] [jit-analyze]            6 (0.67 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.XsltOld.Processor:GetNavigator(System.Uri):System.Xml.XPath.XPathNavigator:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.63 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte):bool:this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.59 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.Runtime.XmlQueryContext:.ctor(System.Xml.Xsl.Runtime.XmlQueryRuntime,System.Object,System.Xml.XmlResolver,System.Xml.Xsl.XsltArgumentList,System.Xml.Xsl.Runtime.WhitespaceRuleLookup):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.59 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.ExceptionUtility:IsFatal(System.Exception):bool (FullOpts)
[00:04:23] [jit-analyze]            3 (0.58 % of base) : System.Runtime.Serialization.Schema.dasm - System.Runtime.Serialization.Fx:IsFatal(System.Exception):bool (FullOpts)
[00:04:23] [jit-analyze]           12 (0.58 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemas:GetSchemaItem(System.Xml.Schema.XmlSchemaObject,System.String,System.String):System.String (FullOpts)
[00:04:23] [jit-analyze]            3 (0.57 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:GetTypeItems(System.Xml.Schema.XmlSchemaType):System.Xml.Serialization.XmlSchemaImporter+TypeItems:this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.51 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaHelper:AddSchemaImport(System.String,System.Xml.Schema.XmlSchema) (FullOpts)
[00:04:23] [jit-analyze]            2 (0.50 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.48 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[byte](byte,System.String):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.47 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemas:Prepare(System.Xml.Schema.XmlSchema) (FullOpts)
[00:04:23] [jit-analyze]            6 (0.46 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportDefaultValue(System.Xml.Serialization.TypeMapping,System.Object):System.String (FullOpts)
[00:04:23] [jit-analyze]            2 (0.42 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[int](int):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.42 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[short](short):bool:this (FullOpts)
[00:04:23] [jit-analyze]            4 (0.42 % of base) : System.Net.Requests.dasm - System.Net.FtpWebRequest:SetException(System.Exception):this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.41 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[short](short):this (FullOpts)
[00:04:23] [jit-analyze]            8 (0.40 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportStructType(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Type,bool):System.Xml.Serialization.StructMapping:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.40 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[long](long):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.36 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[int](int,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.36 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[short](short,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            2 (0.36 % of base) : System.Private.CoreLib.dasm - System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[long](long,System.String):bool:this (FullOpts)
[00:04:23] [jit-analyze]            7 (0.34 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:BuildParticleContentModel(System.Xml.Schema.ParticleContentValidator,System.Xml.Schema.XmlSchemaParticle):bool (FullOpts)
[00:04:23] [jit-analyze]            3 (0.34 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.34 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateEvents(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateProperties(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze]            3 (0.33 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this (FullOpts)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] Top method improvements (percentages):
[00:04:23] [jit-analyze]         -246 (-48.52 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XmlSchemaComplexType:get_DerivedFrom():System.Xml.XmlQualifiedName:this (FullOpts)
[00:04:23] [jit-analyze]          -87 (-30.63 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -87 (-30.53 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -841 (-30.36 % of base) : System.Private.CoreLib.dasm - System.Diagnostics.Tracing.EventProvider:EncodeObject(byref,byref,byref,byref):System.Object (FullOpts)
[00:04:23] [jit-analyze]          -84 (-30.00 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.89 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.79 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-29.79 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -92 (-29.49 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]          -84 (-28.77 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -21 (-26.92 % of base) : System.Data.Common.dasm - System.Data.UniqueConstraint:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -64 (-26.56 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]          -67 (-26.48 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -66 (-26.19 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -73 (-25.17 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -106 (-25.00 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaExporter:ExportDataContract(System.Runtime.Serialization.DataContracts.DataContract):this (FullOpts)
[00:04:23] [jit-analyze]          -70 (-24.05 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-23.24 % of base) : System.Data.Common.dasm - System.Data.DataViewManager:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[]):System.String:this (FullOpts)
[00:04:23] [jit-analyze]          -72 (-21.95 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -17 (-20.99 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XmlSchemaSimpleType:get_DerivedFrom():System.Xml.XmlQualifiedName:this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-20.80 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -70 (-19.94 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.41 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.37 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -86 (-19.37 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -30 (-17.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this (FullOpts)
[00:04:23] [jit-analyze]         -258 (-17.82 % of base) : System.ComponentModel.Composition.Registration.dasm - System.ComponentModel.Composition.Registration.RegistrationBuilder:GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable`1[System.Object]):System.Collections.Generic.IEnumerable`1[System.Object]:this (FullOpts)
[00:04:23] [jit-analyze]          -73 (-17.42 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-14.86 % of base) : System.Data.Common.dasm - System.Data.DataViewManager:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[]):System.ComponentModel.PropertyDescriptorCollection:this (FullOpts)
[00:04:23] [jit-analyze]          -58 (-14.65 % of base) : System.Private.CoreLib.dasm - System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -104 (-14.00 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Preprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]         -104 (-14.00 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionPreprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]          -63 (-13.88 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -33 (-13.75 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:BaseTypeName(System.Xml.Schema.XmlSchemaSimpleType):System.Xml.XmlQualifiedName (FullOpts)
[00:04:23] [jit-analyze]          -43 (-13.11 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -37 (-12.98 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[double](double,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -61 (-11.98 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]        -1117 (-11.62 % of base) : System.Data.Common.dasm - System.Data.XmlTreeGen:SchemaTree(System.Xml.XmlDocument,System.Xml.XmlWriter,System.Data.DataSet,System.Data.DataTable,bool):this (FullOpts)
[00:04:23] [jit-analyze]         -117 (-11.32 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ApplicationSettingsBase:get_Initializer():System.Configuration.SettingsProperty:this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-11.12 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SchemaObjectWriter:Write36_XmlSchemaSimpleContent(System.Xml.Schema.XmlSchemaSimpleContent):this (FullOpts)
[00:04:23] [jit-analyze]          -64 (-9.95 % of base) : System.Collections.dasm - System.Collections.Generic.SortedList`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -50 (-8.93 % of base) : System.Data.Common.dasm - System.Data.DataExpression:ToBoolean(System.Object):bool (FullOpts)
[00:04:23] [jit-analyze]           -4 (-8.51 % of base) : System.Private.CoreLib.dasm - System.SByte:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -94 (-8.41 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SchemaObjectWriter:Write41_XmlSchemaComplexContent(System.Xml.Schema.XmlSchemaComplexContent):this (FullOpts)
[00:04:23] [jit-analyze]         -105 (-8.37 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateBegin():this (FullOpts)
[00:04:23] [jit-analyze]         -178 (-8.28 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportAttributeAccessor(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.AttributeAccessor,bool,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -35 (-8.10 % of base) : System.Private.Xml.Linq.dasm - System.Xml.XPath.XPathEvaluator:Evaluate[System.__Canon](System.Xml.Linq.XNode,System.String,System.Xml.IXmlNamespaceResolver):System.Object (FullOpts)
[00:04:23] [jit-analyze]          -82 (-7.99 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ApplicationSettingsBase:CreateSetting(System.Reflection.PropertyInfo):System.Configuration.SettingsProperty:this (FullOpts)
[00:04:23] [jit-analyze]          -45 (-7.92 % of base) : System.Private.Xml.dasm - System.Xml.Schema.XsdBuilder:BuildIdentityConstraint_Refer(System.Xml.Schema.XsdBuilder,System.String) (FullOpts)
[00:04:23] [jit-analyze]          -71 (-7.84 % of base) : System.Data.Common.dasm - System.Data.ConstraintCollection:Add(System.Data.Constraint,bool):this (FullOpts)
[00:04:23] [jit-analyze]         -207 (-7.69 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this (FullOpts)
[00:04:23] [jit-analyze]         -580 (-7.24 % of base) : System.Private.CoreLib.dasm - System.Diagnostics.Tracing.ManifestBuilder:CreateManifestString():System.String:this (FullOpts)
[00:04:23] [jit-analyze]          -41 (-7.09 % of base) : System.Data.Odbc.dasm - System.Data.Odbc.OdbcParameter:GetColumnSize(System.Object,int,int):int:this (FullOpts)
[00:04:23] [jit-analyze]           -9 (-7.03 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectHolder:SetObjectValue(System.Object,System.Runtime.Serialization.ObjectManager):this (FullOpts)
[00:04:23] [jit-analyze]          -97 (-7.02 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.Json.XmlJsonWriter:WritePrimitiveValue(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -100 (-6.98 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.SettingsPropertyValue:Deserialize():System.Object:this (FullOpts)
[00:04:23] [jit-analyze]         -123 (-6.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaExporter:ExportTypeMembers(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.MemberMapping[],System.String,System.String,bool,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -47 (-6.96 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:KeepXmlnsDeclarations(System.Xml.Schema.XmlSchemaType,byref):bool (FullOpts)
[00:04:23] [jit-analyze]           -3 (-6.67 % of base) : System.Private.CoreLib.dasm - System.Boolean:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]           -3 (-6.67 % of base) : System.Private.CoreLib.dasm - System.Byte:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -44 (-6.39 % of base) : System.ComponentModel.TypeConverter.dasm - System.ComponentModel.PropertyDescriptorCollection:System.Collections.IDictionary.set_Item(System.Object,System.Object):this (FullOpts)
[00:04:23] [jit-analyze]           -3 (-6.38 % of base) : System.Private.CoreLib.dasm - System.Int16:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -25 (-6.11 % of base) : System.ServiceModel.Syndication.dasm - System.ServiceModel.Syndication.SyndicationElementExtensionCollection:Add(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -164 (-6.09 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this (FullOpts)
[00:04:23] [jit-analyze]           -4 (-5.80 % of base) : System.Private.CoreLib.dasm - System.Nullable`1[byte]:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]           -9 (-5.36 % of base) : System.Private.CoreLib.dasm - System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float],System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -95 (-5.31 % of base) : System.CodeDom.dasm - Microsoft.CSharp.CSharpCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -10 (-5.29 % of base) : System.Data.Common.dasm - System.Data.ForeignKeyConstraint:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -50 (-5.17 % of base) : System.CodeDom.dasm - Microsoft.VisualBasic.VBCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -90 (-4.78 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]           -2 (-4.44 % of base) : System.Private.CoreLib.dasm - System.Char:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]           -2 (-4.44 % of base) : System.Private.CoreLib.dasm - System.UInt16:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -90 (-4.33 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this (FullOpts)
[00:04:23] [jit-analyze]           -3 (-4.23 % of base) : System.Private.CoreLib.dasm - System.Nullable`1[short]:Equals(System.Object):bool:this (FullOpts)
[00:04:23] [jit-analyze]          -10 (-4.15 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[double](double):this (FullOpts)
[00:04:23] [jit-analyze]           -3 (-4.05 % of base) : System.Private.Xml.dasm - System.Xml.Xsl.Runtime.XmlQueryOutput:SetWrappedWriter(System.Xml.XmlRawWriter):this (FullOpts)
[00:04:23] [jit-analyze]          -35 (-4.00 % of base) : System.Private.DataContractSerialization.dasm - System.Xml.XmlBaseWriter:WritePrimitiveValue(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]         -189 (-3.95 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:WriteMember(System.String,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.String):this (FullOpts)
[00:04:23] [jit-analyze]          -52 (-3.88 % of base) : System.CodeDom.dasm - System.CodeDom.Compiler.CodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-3.87 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:EndSendRequest(System.IAsyncResult):System.DirectoryServices.Protocols.DirectoryResponse:this (FullOpts)
[00:04:23] [jit-analyze]           -6 (-3.85 % of base) : System.Configuration.ConfigurationManager.dasm - System.Configuration.ConfigurationManager:get_AppSettings():System.Collections.Specialized.NameValueCollection (FullOpts)
[00:04:23] [jit-analyze]          -29 (-3.68 % of base) : System.Runtime.Serialization.Formatters.dasm - System.Runtime.Serialization.ObjectManager:DoFixups():this (FullOpts)
[00:04:23] [jit-analyze]          -41 (-3.62 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateBegin():this (FullOpts)
[00:04:23] [jit-analyze]          -21 (-3.58 % of base) : System.DirectoryServices.Protocols.dasm - System.DirectoryServices.Protocols.LdapConnection:Abort(System.IAsyncResult):this (FullOpts)
[00:04:23] [jit-analyze]          -16 (-3.29 % of base) : System.Private.CoreLib.dasm - System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int):this (FullOpts)
[00:04:23] [jit-analyze]          -26 (-3.02 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.XmlDsigXsltTransform:LoadInput(System.Object):this (FullOpts)
[00:04:23] [jit-analyze]          -42 (-2.97 % of base) : System.Data.Common.dasm - System.Data.XSDSchema:HandleComplexType(System.Xml.Schema.XmlSchemaComplexType,System.Data.DataTable,System.Collections.ArrayList,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -42 (-2.89 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.SchemaImporter:CheckISerializableBase(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaSequence,System.Xml.Schema.XmlSchemaObjectCollection) (FullOpts)
[00:04:23] [jit-analyze]          -34 (-2.73 % of base) : System.Private.DataContractSerialization.dasm - System.Runtime.Serialization.XmlObjectSerializerReadContext:ReadExtensionDataValue(System.Runtime.Serialization.XmlReaderDelegator):System.Runtime.Serialization.IDataNode:this (FullOpts)
[00:04:23] [jit-analyze]          -60 (-2.46 % of base) : System.Security.Cryptography.Xml.dasm - System.Security.Cryptography.Xml.TransformChain:TransformToOctetStream(System.Object,System.Xml.XmlResolver,System.String):System.IO.Stream:this (FullOpts)
[00:04:23] [jit-analyze]          -37 (-2.33 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlSchemaImporter:ImportArrayMapping(System.Xml.Schema.XmlSchemaType,System.String,System.String):System.Xml.Serialization.ArrayMapping:this (FullOpts)
[00:04:23] [jit-analyze]          -44 (-2.16 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.ReflectionXmlSerializationWriter:WriteElement(System.Object,System.Xml.Serialization.ElementAccessor,bool):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-2.01 % of base) : System.Private.Xml.dasm - System.Xml.Schema.Compiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this (FullOpts)
[00:04:23] [jit-analyze]          -23 (-2.01 % of base) : System.Private.Xml.dasm - System.Xml.Schema.SchemaCollectionCompiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this (FullOpts)
[00:04:23] [jit-analyze]           -5 (-1.97 % of base) : System.Private.Xml.dasm - MS.Internal.Xml.XPath.FilterQuery:EvaluatePredicate():bool:this (FullOpts)
[00:04:23] [jit-analyze]          -15 (-1.93 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.SoapReflectionImporter:CreateNullableMapping(System.Xml.Serialization.TypeMapping,System.Type):System.Xml.Serialization.NullableMapping:this (FullOpts)
[00:04:23] [jit-analyze]           -3 (-1.87 % of base) : System.Private.Xml.dasm - System.Xml.Serialization.XmlReflectionImporter:GetMappingName(System.Xml.Serialization.Mapping):System.String (FullOpts)
[00:04:23] [jit-analyze]          -40 (-1.69 % of base) : System.Private.CoreLib.dasm - System.Reflection.Emit.SignatureHelper:AddOneArgTypeHelperWorker(System.Type,bool,System.Reflection.Emit.DynamicScope):this (FullOpts)
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] 275 total methods with Code Size differences (157 improved, 118 regressed), 289593 unchanged.
[00:04:23] [jit-analyze] 
[00:04:23] [jit-analyze] --------------------------------------------------------------------------------
[00:04:23] Uploading 'diff-frameworks.txt'
[00:04:23] Generating diffs for System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this
[00:04:23] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):bool:this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this
[00:04:23] Generating diffs for System.Xml.XmlDataDocument:FoliateIfDataPointers(System.Xml.XmlElement):this
[00:04:23] Generating diffs for System.Runtime.Serialization.ObjectManager:ResolveObjectReference(System.Runtime.Serialization.ObjectHolder):bool:this
[00:04:23] Generating diffs for System.Configuration.ConfigurationElement:SetPropertyValue(System.Configuration.ConfigurationProperty,System.Object,bool):this
[00:04:23] Generating diffs for System.Xml.XPath.Extensions:XPathSelectElement(System.Xml.Linq.XNode,System.String):System.Xml.Linq.XElement
[00:04:23] Generating diffs for System.Configuration.ConfigurationValues:set_Item(System.String,System.Object):this
[00:04:23] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):bool:this
[00:04:23] Generating diffs for System.Security.Cryptography.Xml.CanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument)
[00:04:23] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportTypeMembers(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.INameScope,byref,bool,bool):System.Xml.Serialization.MemberMapping[]:this
[00:04:23] Generating diffs for System.Xml.XPath.Extensions:XPathEvaluate(System.Xml.Linq.XNode,System.String):System.Object
[00:04:23] Generating diffs for System.Xml.Schema.SchemaCollectionCompiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this
[00:04:23] Generating diffs for System.Configuration.ConfigurationElement:Unmerge(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,int):this
[00:04:23] Generating diffs for System.Xml.Schema.Compiler:IsValidRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.XmlSchemaParticle):bool:this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int],System.String):this
[00:04:23] Generating diffs for System.Xml.XPath.Extensions:XPathSelectElements(System.Xml.Linq.XNode,System.String):System.Collections.Generic.IEnumerable`1[System.Xml.Linq.XElement]
[00:04:23] Generating diffs for System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[System.Nullable`1[int]](System.Nullable`1[int]):this
[00:04:23] Generating diffs for System.Security.Cryptography.Xml.ExcCanonicalXml:MarkInclusionStateForNodes(System.Xml.XmlNodeList,System.Xml.XmlDocument,System.Xml.XmlDocument)
[00:04:23] Generating diffs for System.Xml.Schema.SchemaCollectionPreprocessor:Preprocess(System.Xml.Schema.XmlSchema,System.String,int):this
[00:04:23] Generating diffs for System.Xml.Serialization.CodeGenerator:Ldc(System.Object):this
[00:04:23] Generating diffs for System.Xml.Schema.Preprocessor:PreprocessParticle(System.Xml.Schema.XmlSchemaParticle):this
[00:04:23] Generating diffs for System.Configuration.ConfigurationElement:get_Item(System.Configuration.ConfigurationProperty):System.Object:this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):this
[00:04:23] Generating diffs for System.Security.Cryptography.Xml.Reference:LoadXml(System.Xml.XmlElement):this
[00:04:23] Generating diffs for System.Data.XSDSchema:HandleDataSet(System.Xml.Schema.XmlSchemaElement,bool):this
[00:04:23] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[short](short,System.String):this
[00:04:23] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportSchemaType(System.Xml.XmlQualifiedName,System.Type,bool):System.Xml.Serialization.XmlTypeMapping:this
[00:04:23] Generating diffs for System.Data.ConstraintCollection:BaseRemove(System.Data.Constraint):this
[00:04:23] Generating diffs for System.Xml.Serialization.XmlSerializationWriterCodeGen:WritePrimitive(System.String,System.String,System.String,System.Object,System.String,System.Xml.Serialization.TypeMapping,bool,bool,bool):this
[00:04:23] Generating diffs for MS.Internal.Xml.XPath.ExtensionQuery:ProcessResult(System.Object):System.Object:this
[00:04:23] Generating diffs for System.Xml.XmlAttributeCollection:SetNamedItem(System.Xml.XmlNode):System.Xml.XmlNode:this
[00:04:23] Generating diffs for System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[short](short,System.String):this
[00:04:23] Generating diffs for System.Data.XDRSchema:LoadSchema(System.Xml.XmlElement,System.Data.DataSet):this
[00:04:23] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float],System.String):bool:this
[00:04:23] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.Numerics.Vector`1[float]](System.Numerics.Vector`1[float]):bool:this
[00:04:23] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int,System.String):this
[00:04:23] Generating diffs for System.ComponentModel.InheritanceAttribute:IsDefaultAttribute():bool:this
[00:04:23] Generating diffs for System.Data.XSDSchema:IsDatasetParticle(System.Xml.Schema.XmlSchemaParticle):bool:this
[00:04:23] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportRootIfNecessary(System.Xml.Serialization.TypeScope):this
[00:04:23] Generating diffs for System.Data.UnaryNode:EvalUnaryOp(int,System.Object):System.Object:this
[00:04:24]* Saved artifact 'diff-frameworks.txt' to https://mihubot.xyz/r/FSGF4r3A (78 KB)
[00:04:24] Generating diffs for System.Data.XDRSchema:HandleTypeNode(System.Xml.XmlElement,System.Data.DataTable,System.Collections.ArrayList):this
[00:04:24] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[byte](byte):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemas:GetSchemaItem(System.Xml.Schema.XmlSchemaObject,System.String,System.String):System.String
[00:04:24] Generating diffs for Microsoft.VisualBasic.VBCodeGenerator:MethodIsOverloaded(System.CodeDom.CodeMemberMethod,System.CodeDom.CodeTypeDeclaration):bool
[00:04:24] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon,System.String):bool:this
[00:04:24] Generating diffs for System.Runtime.Serialization.ObjectManager:RegisterObject(System.Object,long,System.Runtime.Serialization.SerializationInfo,long,System.Reflection.MemberInfo,int[]):this
[00:04:24] Generating diffs for System.Security.Cryptography.Xml.XmlDsigC14NTransform:LoadInput(System.Object):this
[00:04:24] Generating diffs for System.Security.Cryptography.Xml.XmlDsigExcC14NTransform:LoadInput(System.Object):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportStructType(System.Xml.Schema.XmlSchemaType,System.String,System.String,System.Type,bool):System.Xml.Serialization.StructMapping:this
[00:04:24] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[long](long,System.String):this
[00:04:24] Generating diffs for System.Xml.Schema.Compiler:BuildParticleContentModel(System.Xml.Schema.ParticleContentValidator,System.Xml.Schema.XmlSchemaParticle):bool
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSerializationWriterILGen:WriteMember(System.Xml.Serialization.SourceInfo,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.String):this
[00:04:24] Generating diffs for System.Data.XmlTreeGen:AddXdoProperty(System.ComponentModel.PropertyDescriptor,System.Object,System.Xml.XmlElement):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportDefaultValue(System.Xml.Serialization.TypeMapping,System.Object):System.String
[00:04:24] Generating diffs for System.Xml.Xsl.XsltOld.Compiler:ResolveDocument(System.Uri):System.Xml.Xsl.XsltOld.NavigatorInput:this
[00:04:24] Generating diffs for System.Xml.Xsl.XsltOld.Processor:GetNavigator(System.Uri):System.Xml.XPath.XPathNavigator:this
[00:04:24] Generating diffs for System.Collections.Hashtable:get_comparer():System.Collections.IComparer:this
[00:04:24] Generating diffs for System.Collections.Hashtable:get_hcp():System.Collections.IHashCodeProvider:this
[00:04:24] Generating diffs for System.ComponentModel.StringConverter:ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object):System.Object:this
[00:04:24] Generating diffs for System.Text.StringBuilder+AppendInterpolatedStringHandler:AppendFormatted[byte](byte):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportElementMapping(System.Xml.Schema.XmlSchemaElement,System.Xml.Serialization.Mapping,System.String,bool):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportMapping(System.Xml.Serialization.Mapping,System.String,bool):this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this
[00:04:24] Generating diffs for System.Configuration.ConfigurationElement:SerializeElement(System.Xml.XmlWriter,bool):bool:this
[00:04:24] Generating diffs for System.Data.XSDSchema:HandleRelations(System.Xml.Schema.XmlSchemaAnnotation,bool):this
[00:04:24] Generating diffs for System.Net.FtpWebRequest:SetException(System.Exception):this
[00:04:24] Generating diffs for System.Runtime.Serialization.SchemaHelper:AddSchemaImport(System.String,System.Xml.Schema.XmlSchema)
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateConstructors(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateEvents(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateProperties(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateSnippetMembers(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for Microsoft.CSharp.RuntimeBinder.RuntimeBinderExtensions:IsTypeParameterEquivalentToTypeInst(System.Type,System.Type,System.Reflection.MemberInfo):bool
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateConstructors(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateFields(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateTypeConstructors(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateTypeMember(System.CodeDom.CodeTypeMember,System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.Data.DataSet:FindTable(System.Data.DataTable,System.ComponentModel.PropertyDescriptor[],int):System.Data.DataTable
[00:04:24] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[System.__Canon](System.__Canon):bool:this
[00:04:24] Generating diffs for System.Runtime.Serialization.ExceptionUtility:IsFatal(System.Exception):bool
[00:04:24] Generating diffs for System.Runtime.Serialization.Fx:IsFatal(System.Exception):bool
[00:04:24] Generating diffs for System.Security.Cryptography.Xml.EncryptedXml:DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey):byte[]:this
[00:04:24] Generating diffs for System.Xml.Schema.SchemaCollectionCompiler:CalculateEffectiveTotalRange(System.Xml.Schema.XmlSchemaParticle,byref,byref)
[00:04:24] Generating diffs for System.Xml.Serialization.ReflectionXmlSerializationWriter:WritePrimitiveValue(System.Xml.Serialization.TypeDesc,System.Object,byref):bool:this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:GetTypeItems(System.Xml.Schema.XmlSchemaType):System.Xml.Serialization.XmlSchemaImporter+TypeItems:this
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemaObjectComparer:NameOf(System.Xml.Schema.XmlSchemaObject):System.Xml.XmlQualifiedName
[00:04:24] Generating diffs for System.Xml.Serialization.XmlSchemas:Prepare(System.Xml.Schema.XmlSchema)
[00:04:24] Generating diffs for System.Xml.Xsl.Runtime.XmlQueryContext:.ctor(System.Xml.Xsl.Runtime.XmlQueryRuntime,System.Object,System.Xml.XmlResolver,System.Xml.Xsl.XsltArgumentList,System.Xml.Xsl.Runtime.WhitespaceRuleLookup):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateEvents(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateProperties(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GenerateSnippetMembers(System.CodeDom.CodeTypeDeclaration):this
[00:04:24] Generating diffs for System.Data.Select:AnalyzeExpression(System.Data.BinaryNode):this
[00:04:24] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte,System.String):bool:this
[00:04:24] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[byte](byte):bool:this
[00:04:24] Generating diffs for System.MemoryExtensions+TryWriteInterpolatedStringHandler:AppendFormatted[double](double,System.String):bool:this
[00:04:26] Found 20 changes, comment length=56030 for regressions=True
[00:04:26] Uploading 'ShortDiffsRegressions.md'
[00:04:26] Generating diffs for System.Data.XmlTreeGen:SchemaTree(System.Xml.XmlDocument,System.Xml.XmlWriter,System.Data.DataSet,System.Data.DataTable,bool):this
[00:04:26] Generating diffs for System.Diagnostics.Tracing.EventProvider:EncodeObject(byref,byref,byref,byref):System.Object
[00:04:26] Generating diffs for System.Diagnostics.Tracing.ManifestBuilder:CreateManifestString():System.String:this
[00:04:26] Generating diffs for System.ComponentModel.Composition.Registration.RegistrationBuilder:GetCustomAttributes(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable`1[System.Object]):System.Collections.Generic.IEnumerable`1[System.Object]:this
[00:04:26] Generating diffs for System.Xml.Schema.XmlSchemaComplexType:get_DerivedFrom():System.Xml.XmlQualifiedName:this
[00:04:26] Generating diffs for System.Xml.Schema.Compiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterCodeGen:WriteMember(System.String,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.String):this
[00:04:26] Generating diffs for System.Xml.Schema.SchemaCollectionCompiler:CompileComplexContent(System.Xml.Schema.XmlSchemaComplexType):System.Xml.Schema.ContentValidator:this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportAttributeAccessor(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.AttributeAccessor,bool,System.String):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaExporter:ExportTypeMembers(System.Xml.Schema.XmlSchemaComplexType,System.Xml.Serialization.MemberMapping[],System.String,System.String,bool,bool):this
[00:04:26] Generating diffs for System.Configuration.ApplicationSettingsBase:get_Initializer():System.Configuration.SettingsProperty:this
[00:04:26] Generating diffs for System.Configuration.ConfigurationElement:DeserializeElement(System.Xml.XmlReader,bool):this
[00:04:26] Generating diffs for System.Runtime.Serialization.SchemaExporter:ExportDataContract(System.Runtime.Serialization.DataContracts.DataContract):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateBegin():this
[00:04:26] Generating diffs for System.Xml.Schema.Preprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this
[00:04:26] Generating diffs for System.Xml.Schema.SchemaCollectionPreprocessor:CheckRefinedComplexType(System.Xml.Schema.XmlSchemaComplexType):this
[00:04:26] Generating diffs for System.Configuration.SettingsPropertyValue:Deserialize():System.Object:this
[00:04:26] Generating diffs for System.Runtime.Serialization.Json.XmlJsonWriter:WritePrimitiveValue(System.Object):this
[00:04:26] Generating diffs for Microsoft.CSharp.CSharpCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Xml.Serialization.SchemaObjectWriter:Write36_XmlSchemaSimpleContent(System.Xml.Schema.XmlSchemaSimpleContent):this
[00:04:26] Generating diffs for System.Xml.Serialization.SchemaObjectWriter:Write41_XmlSchemaComplexContent(System.Xml.Schema.XmlSchemaComplexContent):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationReaderCodeGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this
[00:04:26] Generating diffs for System.Xml.Schema.Compiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this
[00:04:26] Generating diffs for System.Xml.Schema.SchemaCollectionCompiler:CompileComplexType(System.Xml.Schema.XmlSchemaComplexType):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[double,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Uploading 'LongDiffsRegressions.md'
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[byte,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[long,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[short,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Data.BinaryNode:EvalBinaryOp(int,System.Data.ExpressionNode,System.Data.ExpressionNode,System.Data.DataRow,int,int[]):System.Object:this
[00:04:26] Generating diffs for System.Configuration.ApplicationSettingsBase:CreateSetting(System.Reflection.PropertyInfo):System.Configuration.SettingsProperty:this
[00:04:26] Generating diffs for System.DirectoryServices.Protocols.LdapConnection:SendRequestHelper(System.DirectoryServices.Protocols.DirectoryRequest,byref):int:this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Data.ConstraintCollection:Add(System.Data.Constraint,bool):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[int,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:27]* Saved artifact 'ShortDiffsRegressions.md' to https://mihubot.xyz/r/FSGF5RnA (54 KB)
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[System.Numerics.Vector`1[float],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationReaderILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[System.Nullable`1[int],System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Collections.Generic.SortedList`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Security.Cryptography.Xml.TransformChain:TransformToOctetStream(System.Object,System.Xml.XmlResolver,System.String):System.IO.Stream:this
[00:04:26] Generating diffs for System.Collections.Concurrent.ConcurrentDictionary`2[System.__Canon,System.Nullable`1[int]]:System.Collections.IDictionary.Add(System.Object,System.Object):this
[00:04:26] Generating diffs for System.CodeDom.Compiler.CodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this
[00:04:26] Generating diffs for Microsoft.VisualBasic.VBCodeGenerator:GeneratePrimitiveExpression(System.CodeDom.CodePrimitiveExpression):this
[00:04:26] Generating diffs for System.Data.DataExpression:ToBoolean(System.Object):bool
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:KeepXmlnsDeclarations(System.Xml.Schema.XmlSchemaType,byref):bool
[00:04:26] Generating diffs for System.Xml.Schema.XsdBuilder:BuildIdentityConstraint_Refer(System.Xml.Schema.XsdBuilder,System.String)
[00:04:26] Generating diffs for System.ComponentModel.PropertyDescriptorCollection:System.Collections.IDictionary.set_Item(System.Object,System.Object):this
[00:04:26] Generating diffs for System.Xml.Serialization.ReflectionXmlSerializationWriter:WriteElement(System.Object,System.Xml.Serialization.ElementAccessor,bool):this
[00:04:26] Generating diffs for Microsoft.VisualBasic.VBCodeGenerator:GenerateDelegateInvokeExpression(System.CodeDom.CodeDelegateInvokeExpression):this
[00:04:26] Generating diffs for System.Data.XSDSchema:HandleComplexType(System.Xml.Schema.XmlSchemaComplexType,System.Data.DataTable,System.Collections.ArrayList,bool):this
[00:04:26] Generating diffs for System.Runtime.Serialization.SchemaImporter:CheckISerializableBase(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaSequence,System.Xml.Schema.XmlSchemaObjectCollection)
[00:04:26] Generating diffs for System.Data.Odbc.OdbcParameter:GetColumnSize(System.Object,int,int):int:this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterCodeGen:GenerateBegin():this
[00:04:26] Generating diffs for System.Reflection.Emit.SignatureHelper:AddOneArgTypeHelperWorker(System.Type,bool,System.Reflection.Emit.DynamicScope):this
[00:04:26] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[double](double,System.String):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportArrayMapping(System.Xml.Schema.XmlSchemaType,System.String,System.String):System.Xml.Serialization.ArrayMapping:this
[00:04:26] Generating diffs for System.Xml.XmlBaseWriter:WritePrimitiveValue(System.Object):this
[00:04:26] Generating diffs for System.Xml.XPath.XPathEvaluator:Evaluate[System.__Canon](System.Xml.Linq.XNode,System.String,System.Xml.IXmlNamespaceResolver):System.Object
[00:04:26] Generating diffs for System.Runtime.Serialization.XmlObjectSerializerReadContext:ReadExtensionDataValue(System.Runtime.Serialization.XmlReaderDelegator):System.Runtime.Serialization.IDataNode:this
[00:04:26] Generating diffs for System.Data.DataViewManager:System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[]):System.ComponentModel.PropertyDescriptorCollection:this
[00:04:26] Generating diffs for System.Data.DataViewManager:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[]):System.String:this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:BaseTypeName(System.Xml.Schema.XmlSchemaSimpleType):System.Xml.XmlQualifiedName
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterILGen:WriteElement(System.Xml.Serialization.SourceInfo,System.Xml.Serialization.ElementAccessor,System.String,bool):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterILGen:GenerateMethod(System.Xml.Serialization.TypeMapping):this
[00:04:26] Generating diffs for System.Runtime.Serialization.ObjectManager:DoFixups():this
[00:04:26] Generating diffs for System.Data.XSDSchema:HandleElementColumn(System.Xml.Schema.XmlSchemaElement,System.Data.DataTable,bool):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationReaderCodeGen:WriteMemberElementsIf(System.Xml.Serialization.XmlSerializationReaderCodeGen+Member[],System.Xml.Serialization.XmlSerializationReaderCodeGen+Member,System.String,System.String):this
[00:04:26] Generating diffs for System.Security.Cryptography.Xml.XmlDsigXsltTransform:LoadInput(System.Object):this
[00:04:26] Generating diffs for System.ServiceModel.Syndication.SyndicationElementExtensionCollection:Add(System.Object):this
[00:04:26] Generating diffs for System.DirectoryServices.Protocols.LdapConnection:EndSendRequest(System.IAsyncResult):System.DirectoryServices.Protocols.DirectoryResponse:this
[00:04:27]* Saved artifact 'LongDiffsRegressions.md' to https://mihubot.xyz/r/FSGF5XOA (725 KB)
[00:04:26] Generating diffs for System.Xml.Schema.Compiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this
[00:04:26] Generating diffs for System.Xml.Schema.SchemaCollectionCompiler:CompileIdentityConstraint(System.Xml.Schema.XmlSchemaIdentityConstraint):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportEnumeratedDataType(System.Xml.Schema.XmlSchemaSimpleType,System.String,System.String,int,bool):System.Xml.Serialization.TypeMapping:this
[00:04:26] Generating diffs for System.Data.UniqueConstraint:Equals(System.Object):bool:this
[00:04:26] Generating diffs for System.DirectoryServices.Protocols.LdapConnection:Abort(System.IAsyncResult):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlReflectionImporter:ReconcileAccessor(System.Xml.Serialization.Accessor,System.Xml.Serialization.NameTable):System.Xml.Serialization.Accessor:this
[00:04:26] Generating diffs for System.Xml.Schema.SchemaCollectionPreprocessor:PreprocessParticle(System.Xml.Schema.XmlSchemaParticle):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterILGen:WritePrimitive(System.String,System.String,System.String,System.Object,System.Xml.Serialization.SourceInfo,System.Xml.Serialization.TypeMapping,bool,bool,bool):this
[00:04:26] Generating diffs for System.Xml.Serialization.XmlSerializationWriterCodeGen:WriteElement(System.String,System.Xml.Serialization.ElementAccessor,System.String,bool):this
[00:04:26] Generating diffs for System.Xml.Schema.XmlSchemaSimpleType:get_DerivedFrom():System.Xml.XmlQualifiedName:this
[00:04:26] Generating diffs for System.Runtime.CompilerServices.DefaultInterpolatedStringHandler:AppendFormatted[int](int):this
[00:04:26] Generating diffs for System.Xml.Serialization.SoapReflectionImporter:CreateNullableMapping(System.Xml.Serialization.TypeMapping,System.Type):System.Xml.Serialization.NullableMapping:this
[00:04:26] Generating diffs for System.DirectoryServices.Protocols.LdapConnection:BuildAttributes(System.Collections.CollectionBase,System.Collections.ArrayList):System.DirectoryServices.Protocols.LdapMod[]
[00:04:26] Generating diffs for System.Xml.Serialization.ReflectionXmlSerializationWriter:WriteMember(System.Object,System.Xml.Serialization.AttributeAccessor,System.Xml.Serialization.TypeDesc,System.Object):this
[00:04:27] Generating diffs for System.Xml.Serialization.XmlSchemaImporter:ImportGroupMembers(System.Xml.Schema.XmlSchemaParticle,System.String,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.CodeIdentifiers,System.Xml.Serialization.INameScope,System.String,bool,byref,byref,bool,bool):this
[00:04:27] Generating diffs for System.ComponentModel.EnumConverter:ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object):System.Object:this
[00:04:27] Generating diffs for System.Xml.Schema.Preprocessor:PreprocessComplexType(System.Xml.Schema.XmlSchemaComplexType,bool):this
[00:04:29] Found 20 changes, comment length=59548 for regressions=False
[00:04:29] Uploading 'ShortDiffsImprovements.md'
[00:04:29] Uploading 'LongDiffsImprovements.md'
[00:04:30]* Saved artifact 'ShortDiffsImprovements.md' to https://mihubot.xyz/r/FSGF6Ac (58 KB)
[00:04:30]* Saved artifact 'LongDiffsImprovements.md' to https://mihubot.xyz/r/FSGF6H6A (886 KB)
[00:04:30] Average overall CPU usage estimate: 33 %
[00:04:30] Average overall memory usage estimate: 91 %
[00:04:35]* Saved artifact 'logs.txt' to https://mihubot.xyz/r/FSGF7XaA (337 KB)
