Skip to content

Commit 628f332

Browse files
committed
skip testing on .net 3.1 ubuntu 22.04
1 parent 45f0709 commit 628f332

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/docker/Tasks/DockerManifest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ public override void Run(BuildContext context)
4444
{
4545
foreach (var group in context.Images.GroupBy(x => new { x.Distro, x.TargetFramework }))
4646
{
47+
// TODO skip this because of https://github.com/GitTools/GitVersion/pull/3148, remove after .net core 3.1 is removed
48+
if (group.Key.Distro == Constants.Ubuntu2204 && group.Key.TargetFramework == Constants.Version31) continue;
49+
4750
var amd64DockerImage = group.First(x => x.Architecture == Architecture.Amd64);
4851
var arm64DockerImage = group.First(x => x.Architecture == Architecture.Arm64);
4952
context.DockerCreateManifest(amd64DockerImage, context.SkipImage(arm64DockerImage));

0 commit comments

Comments
 (0)