Skip to content

Commit

Permalink
(build) disable .net 7.0 arm64 docker images testing
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Nov 3, 2022
1 parent d41640b commit 438b630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/common/Utilities/DockerContextExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static bool SkipImage(this ICakeContext context, DockerImage dockerImage)

if (architecture == Architecture.Amd64) return false;
if (!Constants.DistrosToSkip.Contains(distro)) return false;

if (targetFramework != Constants.Version70) return false; // for now skip all net7.0 arm64 images https://github.com/dotnet/sdk/issues/27190
context.Information($"Skipping Target: {targetFramework}, Distro: {distro}, Arch: {architecture}");
return true;
}
Expand Down

0 comments on commit 438b630

Please sign in to comment.