Skip to content

Commit

Permalink
Disable pack determinism because of unforeseen impact on deployment t…
Browse files Browse the repository at this point in the history
…ools (#3060)
  • Loading branch information
nkolev92 authored Sep 18, 2019
1 parent 5577b91 commit 84230f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public PackageBuilder()
private PackageBuilder(bool includeEmptyDirectories, bool deterministic)
{
_includeEmptyDirectories = includeEmptyDirectories;
_deterministic = deterministic;
_deterministic = false; // fix in https://github.com/NuGet/Home/issues/8601
Files = new Collection<IPackageFile>();
DependencyGroups = new Collection<PackageDependencyGroup>();
FrameworkReferences = new Collection<FrameworkAssemblyReference>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5970,7 +5970,7 @@ private static void VerifyNuspecRoundTrips(PackageArchiveReader nupkgReader, str
}
}

[Fact]
[Fact(Skip = "https://github.com/NuGet/Home/issues/8601")]
public void PackCommand_Deterministic_MultiplePackInvocations_CreateIdenticalPackages()
{
var nugetexe = Util.GetNuGetExePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3967,7 +3967,7 @@ public void PackCommand_WithGeneratePackageOnBuildSet_CanPublish()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, Skip = "https://github.com/NuGet/Home/issues/8601")]
public void PackCommand_Deterministic_MultiplePackInvocations_CreateIdenticalPackages()
{
using (var testDirectory = TestDirectory.Create())
Expand Down

0 comments on commit 84230f1

Please sign in to comment.