-
Notifications
You must be signed in to change notification settings - Fork 659
/
Copy pathbuild.ps1
74 lines (63 loc) · 2.36 KB
/
build.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[CmdletBinding()]
Param(
[Parameter(HelpMessage="Assembly version number (x.y.z.0 where x.y.z is the semantic version)")]
[string]$Version = "0.0.0.0",
[Parameter(HelpMessage="Configuration (Debug, Release)")]
[ValidateSet("Debug","Release")]
[string]$Configuration = "Release",
[Parameter(HelpMessage="Run Tests (yes,no)")]
[ValidateSet("yes","no")]
[string]$RunTests = "no"
)
Function Write-Info {
Param([string]$message)
Process {
Write-Host $message -ForegroundColor Cyan
}
}
#Borrowed from psake
Function Exec
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$true, Position=0)][scriptblock]$Command,
[Parameter(Mandatory=$false, Position=1)][string]$ErrorMessage = ("Failed executing {0}" -F $Command)
)
& $Command
if ($LASTEXITCODE -ne 0) {
throw ("Exec: " + $ErrorMessage)
}
}
Function Start-Build{
#Make compatible with Powershell 2
if(!$PSScriptRoot) { $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent }
#Configuration
$platform = "x64"
$baseDirectory = $PSScriptRoot
$srcDirectory = Join-Path $baseDirectory "src"
$binDirectory = Join-Path $baseDirectory "bin"
$eventStoreSolution = Join-Path $srcDirectory "EventStore.sln"
Write-Info "Build Configuration"
Write-Info "-------------------"
Write-Info "Version: $Version"
Write-Info "Platform: $platform"
Write-Info "Configuration: $Configuration"
Write-Info "Run Tests: $RunTests"
#Build Event Store (Patch AssemblyInfo, Build, Revert AssemblyInfo)
Remove-Item -Force -Recurse $binDirectory -ErrorAction SilentlyContinue > $null
$versionInfoFile = Resolve-Path (Join-Path $srcDirectory (Join-Path "EventStore.Common" (Join-Path "Utils" "VersionInfo.cs"))) -Relative
try {
Exec { dotnet build -c $configuration /p:Version=$Version /p:Platform=x64 $eventStoreSolution }
} finally {
Write-Info "Reverting $versionInfoFile to original state."
& { git checkout --quiet $versionInfoFile }
}
if($RunTests -eq "yes"){
(Get-ChildItem -Attributes Directory src | % FullName) -Match '.Tests' | `
ForEach-Object {
dotnet test -v normal -c $Configuration /p:Platform=x64 --no-build --logger trx --results-directory testResults $_
if (-Not $?) { throw "Exit code is $?" }
}
}
}
Start-Build