-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
module Fake.GitVersionHelper | ||
|
||
open FSharp.Data | ||
open Newtonsoft.Json | ||
open System | ||
|
||
type GitVersionProperties = { | ||
Major : int; | ||
Minor : int; | ||
Patch : int; | ||
PreReleaseTag : string; | ||
PreReleaseTagWithDash : string; | ||
PreReleaseLabel : string; | ||
PreReleaseNumber : int; | ||
BuildMetaData : string; | ||
BuildMetaDataPadded : string; | ||
FullBuildMetaData : string; | ||
MajorMinorPatch : string; | ||
SemVer : string; | ||
LegacySemVer : string; | ||
LegacySemVerPadded : string; | ||
AssemblySemVer : string; | ||
FullSemVer : string; | ||
InformationalVersion : string; | ||
BranchName : string; | ||
Sha : string; | ||
NuGetVersionV2 : string; | ||
NuGetVersion : string; | ||
CommitsSinceVersionSource : int; | ||
CommitsSinceVersionSourcePadded : string; | ||
CommitDate : string; | ||
} | ||
|
||
|
||
let GitVersion () = | ||
let dirs = [ (environVar "ProgramData") @@ "chocolatey" @@ "bin" ] | ||
let file = "GitVersion.exe" | ||
let timespan = TimeSpan.FromMinutes 1. | ||
let usage = "To install GitVersion.exe, start PowerShell as Administrator and run choco install gitversion.portable -s https://chocolatey.org/api/v2" | ||
|
||
let run executable = | ||
let result = ExecProcessAndReturnMessages (fun info -> | ||
info.FileName <- executable ) timespan | ||
if result.ExitCode <> 0 then failwithf "%s failed with exit code %i" executable result.ExitCode | ||
result.Messages |> String.concat "" | ||
|
||
|
||
match tryFindFile dirs file with | ||
| Some executable -> run executable |> fun j -> JsonConvert.DeserializeObject<GitVersionProperties>(j) | ||
| None -> failwithf "%s is not installed. %s" file usage |