Skip to content

Commit

Permalink
[net6] Fixes build issues from VS for Preview 7 (#12281)
Browse files Browse the repository at this point in the history
* [net6] Adds missing custom linker steps when building from Windows

To share the definition of the custom steps we need to specify the right path to the `dotnet-linker.dll`.

When building from macOS `_XamarinSdkRootDirectoryOnMac` will have the same value as `_XamarinSdkRootDirectory` (which is the local Xamarin SDK dir), but from Windows the former will be the path to the Xamarin SDK on the connected Mac. Essentially this new property is agnostic from the platform from which the build is being executed, and will always return the path to the Xamarin SDK on macOS (either local or remote), so it can be used on scenarios like this one where we know the resource we need should always be referenced from macOS.

* [net6] Updates .NET SDK path for remote tasks execution

This path needs to be updated because VS (from Dev17 Preview 3+) will install through XMA the .NET SDK and the iOS SDK on macOS in a custom dir. This should be the preferred path when building from Windows if it does exist.

* Adds missing spaces to TaskRunner.cs
  • Loading branch information
emaf authored Jul 29, 2021
1 parent ebc3d5c commit 7c66aa3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

<PropertyGroup>
<_DotNetRootRemoteDirectory Condition="$(_DotNetRootRemoteDirectory) == ''">/usr/local/share/dotnet/</_DotNetRootRemoteDirectory>
<_XamarinSdkRemoteRootDirectory Condition="'$(_XamarinSdkRemoteRootDirectory)' == ''">$(_XamarinSdkRootDirectory.Replace('$(NetCoreRoot)', '$(_DotNetRootRemoteDirectory)'))</_XamarinSdkRemoteRootDirectory>
<_MlaunchPath Condition="'$(_MlaunchPath)' == ''">$(_XamarinSdkRemoteRootDirectory)tools/bin/mlaunch</_MlaunchPath>
<_XamarinSdkRootDirectoryOnMac Condition="'$(_XamarinSdkRootDirectory)' != ''">$(_XamarinSdkRootDirectory.Replace('$(NetCoreRoot)', '$(_DotNetRootRemoteDirectory)'))</_XamarinSdkRootDirectoryOnMac>
<_MlaunchPath Condition="'$(_MlaunchPath)' == ''">$(_XamarinSdkRootDirectoryOnMac)tools/bin/mlaunch</_MlaunchPath>
<AfterMicrosoftNETSdkTargets>$(AfterMicrosoftNETSdkTargets);$(MSBuildThisFileDirectory)..\targets\Microsoft.iOS.Windows.Sdk.targets</AfterMicrosoftNETSdkTargets>

<_XamarinSdkRootOnMac Condition="'$(_XamarinSdkRoot)' != ''">$(_XamarinSdkRoot.Replace('$(NetCoreRoot)', '$(_DotNetRootRemoteDirectory)'))</_XamarinSdkRootOnMac>
Expand Down
4 changes: 3 additions & 1 deletion dotnet/targets/Xamarin.Shared.Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
<PropertyGroup>
<!-- Set to true when using the Microsoft.<platform>.Sdk NuGet. This is used by pre-existing/shared targets to tweak behavior depending on build system -->
<UsingAppleNETSdk>true</UsingAppleNETSdk>
<!-- This is the location of the Microsoft.<platform>.Sdk NuGet (/usr/local/share/dotnet/sdk/<version>/Sdks/Microsoft.[iOS/tvOS/watchOS/macOS].Sdk) -->
<!-- This is the location of the Microsoft.<platform>.Sdk NuGet (/usr/local/share/dotnet/sdk/<version>/Sdks/Microsoft.[iOS/tvOS/watchOS/macOS].Sdk) on the platform the build is running from (Mac or Win) -->
<_XamarinSdkRootDirectory>$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)', '..'))\</_XamarinSdkRootDirectory>
<!-- This is the location of the Microsoft.<platform>.Sdk NuGet on macOS, this value will be overriden from Windows -->
<_XamarinSdkRootDirectoryOnMac>$(_XamarinSdkRootDirectory)</_XamarinSdkRootDirectoryOnMac>
<_XamarinTaskAssembly Condition="'$(_PlatformName)' != 'macOS'">$(_XamarinSdkRootDirectory)\tools\msbuild\iOS\Xamarin.iOS.Tasks.dll</_XamarinTaskAssembly>
<_XamarinTaskAssembly Condition="'$(_PlatformName)' == 'macOS'">$(_XamarinSdkRootDirectory)\tools\msbuild\macOS\Xamarin.Mac.Tasks.dll</_XamarinTaskAssembly>
<SuppressTrimAnalysisWarnings Condition=" '$(SuppressTrimAnalysisWarnings)' == '' ">true</SuppressTrimAnalysisWarnings>
Expand Down
10 changes: 4 additions & 6 deletions dotnet/targets/Xamarin.Shared.Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,6 @@
</CreateAppBundleDependsOn>
</PropertyGroup>

<!-- Linker -->
<PropertyGroup>
<_AdditionalTaskAssemblyDirectory>$(_XamarinSdkRootDirectory)tools/dotnet-linker/</_AdditionalTaskAssemblyDirectory>
<_AdditionalTaskAssembly>$(_AdditionalTaskAssemblyDirectory)dotnet-linker.dll</_AdditionalTaskAssembly>
</PropertyGroup>

<!-- PublishTrimmed must be calculated as part of a target because IsMacEnabled on Windows will be set after connecting to the Mac -->
<Target Name="_ComputePublishTrimmed">
<PropertyGroup>
Expand Down Expand Up @@ -431,6 +425,10 @@

<!-- We always want the linker to process debug symbols, even when building in Release mode, because the AOT compiler uses the managed debug symbols to output DWARF debugging symbols -->
<TrimmerRemoveSymbols Condition="'$(TrimmerRemoveSymbols)' == ''">false</TrimmerRemoveSymbols>

<!-- Linker -->
<_AdditionalTaskAssemblyDirectory>$(_XamarinSdkRootDirectoryOnMac)tools/dotnet-linker/</_AdditionalTaskAssemblyDirectory>
<_AdditionalTaskAssembly>$(_AdditionalTaskAssemblyDirectory)dotnet-linker.dll</_AdditionalTaskAssembly>
</PropertyGroup>

<ItemGroup>
Expand Down
12 changes: 10 additions & 2 deletions msbuild/Messaging/Xamarin.Messaging.Build/TaskRunner.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using Microsoft.Build.Utilities;
Expand All @@ -16,8 +17,15 @@ internal TaskRunner (ITaskSerializer serializer)
{
this.serializer = serializer;

var dotnetPath = Path.Combine (MessagingContext.GetXmaPath (), "SDKs", "dotnet", "dotnet");

//In case the XMA dotnet has not been installed yet
if (!File.Exists (dotnetPath)) {
dotnetPath = "/usr/local/share/dotnet/dotnet";
}

// TODO: Needed by the ILLinkTask, we need to add support for doing this from Windows
Environment.SetEnvironmentVariable ("DOTNET_HOST_PATH", "/usr/local/share/dotnet/dotnet");
Environment.SetEnvironmentVariable ("DOTNET_HOST_PATH", dotnetPath);
}

internal IEnumerable<Type> Tasks => tasks.AsReadOnly ();
Expand Down Expand Up @@ -48,4 +56,4 @@ public ExecuteTaskResult Execute (string taskName, string inputs)
return result;
}
}
}
}

1 comment on commit 7c66aa3

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

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

❌ [CI Build] Tests failed on Build ❌

Tests failed on Build.

API & Generator diff

API Diff (from PR only) (no change)
Generator Diff (no change)

Path D:\a\1\s\artifacts\pkg-info\artifacts.json was not found!

Test results

172 tests failed, 52 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug [dotnet]: Failed (Tests run: 2629 Passed: 2490 Inconclusive: 35 Failed: 1 Ignored: 138)
  • monotouch-test/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (LinkSdk) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (static registrar) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Release (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/tvOS - simulator/Debug (all optimizations) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (LinkSdk): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (static registrar): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Release (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • monotouch-test/watchOS 32-bits - simulator/Debug (all optimizations): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • fsharp/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • fsharp/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • fsharp/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • fsharp/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • framework-test/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • framework-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • framework-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • framework-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • xcframework-test/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • xcframework-test/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • xcframework-test/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • xcframework-test/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • interdependent-binding-projects/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • interdependent-binding-projects/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • interdependent-binding-projects/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • interdependent-binding-projects/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • interdependent-binding-projects/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug (iOS 11.4): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/iOS Unified 64-bits - simulator/Debug (iOS 11.4) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug (tvOS 11.4): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/tvOS - simulator/Debug (tvOS 11.4) [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • dont link/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link all/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/iOS Unified 64-bits - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Debug [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/tvOS - simulator/Release [dotnet]: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • link sdk/watchOS 32-bits - simulator/Release: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-compat/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-compat/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-compat/iOS Unified Today Extension 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-compat/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-compat/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-unified/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-unified/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-unified/iOS Unified Today Extension 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-unified/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mono-native-unified/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 1/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 2/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono BCL tests group 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 3/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 3/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 4/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 5/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono BCL tests group 5/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 1/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 1/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 2/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 2/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 3/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 3/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 3/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • mscorlib Part 3/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 1/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemCoreXunit Part 2/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/iOS Unified 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/tvOS - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemCoreTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemNumericsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemRuntimeSerializationTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemTransactionsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemXmlTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemXmlLinqTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemComponentModelDataAnnotationsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemJsonTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemServiceModelWebTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemIOCompressionTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemIOCompressionFileSystemTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono MonoCSharpTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemSecurityTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono MonoDataSqliteTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono MonoRuntimeTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemDataTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemDataDataSetExtensionsTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemNetHttpTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemServiceModelTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono CorlibTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [NUnit] Mono SystemWebServicesTests/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemDataXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemJsonXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemSecurityXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemLinqXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemXmlXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemRuntimeCompilerServicesUnsafeXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemNumericsXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono MicrosoftCSharpXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • [xUnit] Mono SystemNetHttpUnitTestsXunit/watchOS 32-bits - simulator/Debug: Failed (Not enough space on the root drive '/': 724.44 MB left of 1024 MB required)
  • Documentation/All: Failed

Pipeline on Agent XAMBOT-1027.BigSur'
[net6] Fixes build issues from VS for Preview 7 (#12281)

Please sign in to comment.