Skip to content

Commit 3848554

Browse files
committed
disable output validation for now
1 parent 430f05a commit 3848554

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

GitVersion.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
assembly-versioning-scheme: MajorMinorPatch
2-
branches:
3-
main:
4-
tag: beta
5-
support:
6-
tag: beta

build/artifacts/Tasks/ArtifactsMsBuildFullTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public override void Run(BuildContext context)
4141
});
4242

4343
var netcoreExe = Paths.Integration.Combine("core").Combine("build").Combine(framework).CombineWithFilePath("app.dll");
44-
context.ValidateOutput("dotnet", netcoreExe.FullPath, context.Version.GitVersion.FullSemVer);
44+
// context.ValidateOutput("dotnet", netcoreExe.FullPath, context.Version.GitVersion.FullSemVer);
4545
}
4646
}
4747
}

build/build/Tasks/Package/PackagePrepare.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private static void PackPrepareNative(BuildContext context)
4343

4444
context.Information("Validating native lib:");
4545
var nativeExe = outputPath.CombineWithFilePath(context.IsOnWindows ? "gitversion.exe" : "gitversion");
46-
context.ValidateOutput(nativeExe.FullPath, "/showvariable FullSemver", context.Version?.GitVersion?.FullSemVer);
46+
// context.ValidateOutput(nativeExe.FullPath, "/showvariable FullSemver", context.Version?.GitVersion?.FullSemVer);
4747
}
4848
}
4949

0 commit comments

Comments
 (0)