110 lines
4.4 KiB
XML
110 lines
4.4 KiB
XML
<Project ToolsVersion="14.0" DefaultTargets="Test">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<PathSeparator>/</PathSeparator>
|
|
<PathSeparator Condition=" '$(OSName)' == 'win' ">\</PathSeparator>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="test/TestPackageProjects.targets" />
|
|
<Import Project="test/TestProjects.targets" />
|
|
|
|
<Target Name="Test"
|
|
Condition=" '$(CLIBUILD_SKIP_TESTS)' != 'true' "
|
|
DependsOnTargets="EnsureStageSeparation;
|
|
BuildTests;">
|
|
|
|
<PropertyGroup>
|
|
<PathListSeparator>:</PathListSeparator>
|
|
<PathListSeparator Condition=" '$(OSName)' == 'win' ">%3b</PathListSeparator>
|
|
<ExecPath>$(Stage2Directory)$(PathListSeparator)$(PATH)</ExecPath>
|
|
<ExecPath Condition=" '$(OSName)' == 'win' ">$(Stage2Directory)</ExecPath>
|
|
<TestArtifactsEnv>$(TestArtifactsDir)</TestArtifactsEnv>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<TestTaskEnvironmentVariables Include="PATH=$(ExecPath)" />
|
|
<TestTaskEnvironmentVariables Include="TEST_ARTIFACTS=$(TestArtifactsEnv)" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<RunTestEnvironmentVariables>@(TestTaskEnvironmentVariables)</RunTestEnvironmentVariables>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectsToTest Include="build/test/RunTest.proj">
|
|
<Properties>
|
|
CLIBuildDll=$(CLIBuildDll);
|
|
Configuration=$(Configuration);
|
|
EnvironmentVariables=$(RunTestEnvironmentVariables);
|
|
TestProject=%(TestProjects.Identity);
|
|
TestResultXmlDir=$(TestResultXmlDir);
|
|
ToolPath=$(Stage2Directory);
|
|
WorkingDirectory=$([System.IO.Directory]::GetParent(%(TestProjects.Identity)))
|
|
</Properties>
|
|
</ProjectsToTest>
|
|
</ItemGroup>
|
|
|
|
<Message Text="Starting test execution" Importance="High" />
|
|
|
|
<MSBuild
|
|
BuildInParallel="True"
|
|
Projects="@(ProjectsToTest)">
|
|
</MSBuild>
|
|
|
|
<Message Text="Finished test execution" Importance="High" />
|
|
</Target>
|
|
|
|
<Target Name="PrepareTests"
|
|
DependsOnTargets="Init;
|
|
SetupTestProjectData">
|
|
<PropertyGroup>
|
|
<TestPackageBuildVersionSuffix>$(CommitCount)</TestPackageBuildVersionSuffix>
|
|
<TestOutputDir>$(RepoRoot)/artifacts/testpackages/</TestOutputDir>
|
|
<TestPackagesBuildDir>$(TestOutputDir)/packagesBuild/</TestPackagesBuildDir>
|
|
<TestPackagesDir>$(TestOutputDir)/packages/</TestPackagesDir>
|
|
<TestArtifactsDir>$(TestOutputDir)/artifacts/</TestArtifactsDir>
|
|
<TestResultXmlDir>$(TestOutputDir)/results/</TestResultXmlDir>
|
|
<TestDirectory>$(RepoRoot)/test/</TestDirectory>
|
|
<DotnetUnderTest>$(Stage2Directory)</DotnetUnderTest>
|
|
</PropertyGroup>
|
|
|
|
<MakeDir Directories="$(TestPackagesDir)" Condition="!Exists('$(TestPackagesDir)')"/>
|
|
</Target>
|
|
|
|
<Target Name="RestoreTests"
|
|
DependsOnTargets="PrepareTests;
|
|
CreateTestAssetPackageNuPkgs;">
|
|
<DotNetRestore ToolPath="$(Stage0Directory)"
|
|
ProjectPath=""$(TestDirectory)/Microsoft.DotNet.Cli.Tests.sln"" />
|
|
</Target>
|
|
|
|
<Target Name="BuildTests"
|
|
DependsOnTargets="RestoreTests;">
|
|
<DotNetBuild ToolPath="$(Stage0Directory)"
|
|
ProjectPath=""$(TestDirectory)/Microsoft.DotNet.Cli.Tests.sln"" />
|
|
</Target>
|
|
|
|
<Target Name="CreateTestAssetPackageNuPkgs"
|
|
DependsOnTargets="SetupTestPackageProjectData;"
|
|
Outputs="%(TestPackageProject.Identity)">
|
|
|
|
<DotNetRestore ToolPath="$(Stage0Directory)"
|
|
Source="$(TestPackagesDir)"
|
|
ConfigFile="$(RepoRoot)\NuGet.Config"
|
|
ProjectPath="%(TestPackageProject.ProjectPath)" />
|
|
|
|
<!-- https://github.com/NuGet/Home/issues/4063 -->
|
|
<DotNetPack Output="$(TestPackagesDir)"
|
|
ProjectPath="%(TestPackageProject.ProjectPath)"
|
|
ToolPath="$(Stage0Directory)"
|
|
VersionSuffix="%(TestPackageProject.VersionSuffix)"
|
|
MsbuildArgs="%(TestPackageProject.MsbuildArgs) /p:SdkNuGetVersion=$(SdkNugetVersion)" />
|
|
|
|
</Target>
|
|
|
|
<Target Name="EnsureStageSeparation">
|
|
<DotNetMSBuild Arguments="/v:diag $(RepoRoot)/build_projects/Microsoft.DotNet.Cli.Build.SelfTest/InvokeWithStage0.proj /p:Stage2Directory="$(Stage2Directory)""
|
|
ToolPath="$(Stage0Directory)" />
|
|
</Target>
|
|
</Project>
|