Skip to content

Commit 802e5c7

Browse files
author
Jason Zhai
committed
Merge branch 'release/8.0.1xx' into release/8.0.2xx
2 parents 322623e + 1d7de1c commit 802e5c7

File tree

4 files changed

+5
-56
lines changed

4 files changed

+5
-56
lines changed

src/SourceBuild/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/SourceBuiltArtifactsTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ public void VerifyVersionFile()
5858
string[] sdkVersionLines = File.ReadAllLines(Path.Combine(outputDir, sdkVersionPath));
5959
string expectedSdkVersion = sdkVersionLines[1];
6060

61-
Assert.Equal(expectedSdkVersion, sdkVersion);
61+
// Disable due to https://github.com/dotnet/source-build/issues/3693
62+
// Assert.Equal(expectedSdkVersion, sdkVersion);
6263
}
6364
finally
6465
{

src/SourceBuild/content/test/Microsoft.DotNet.SourceBuild.SmokeTests/assets/baselines/MsftToSbSdkFiles.diff

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ index ------------
4848
./packs/NETStandard.Library.Ref/x.y.z/ref/netstandard2.1/System.Xml.XPath.XDocument.dll
4949
./sdk-manifests/
5050
./sdk-manifests/x.y.z/
51-
-./sdk-manifests/x.y.z/
5251
-./sdk-manifests/x.y.z/
5352
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/
5453
./sdk-manifests/x.y.z/microsoft.net.workload.emscripten.current/x.y.z/

src/VirtualMonoRepo/Tasks/GitFileManagerFactory.cs

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/VirtualMonoRepo/Tasks/VirtualMonoRepo_Initialize.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ await vmrInitializer.InitializeRepository(
7474
additionalRemotes,
7575
ReadmeTemplatePath,
7676
TpnTemplatePath,
77+
generateCodeowners: false,
78+
discardPatches: true,
7779
_cancellationToken.Token);
7880
return true;
7981
}
@@ -82,7 +84,6 @@ await vmrInitializer.InitializeRepository(
8284

8385
private IServiceProvider CreateServiceProvider() => new ServiceCollection()
8486
.AddLogging(b => b.AddConsole().AddFilter(l => l >= LogLevel.Information))
85-
.AddTransient<GitFileManagerFactory>()
86-
.AddVmrManagers(sp => sp.GetRequiredService<GitFileManagerFactory>(), "git", VmrPath, TmpPath, null, null)
87+
.AddVmrManagers("git", VmrPath, TmpPath, null, null)
8788
.BuildServiceProvider();
8889
}

0 commit comments

Comments
 (0)