forked from justeattakeaway/JustSaying
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
executable file
·144 lines (114 loc) · 5.13 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#! /usr/bin/env pwsh
param(
[Parameter(Mandatory = $false)][string] $Configuration = "Release",
[Parameter(Mandatory = $false)][string] $VersionSuffix = "",
[Parameter(Mandatory = $false)][string] $OutputPath = "",
[Parameter(Mandatory = $false)][switch] $SkipTests,
[Parameter(Mandatory = $false)][switch] $EnableIntegrationTests
)
$ErrorActionPreference = "Stop"
$ProgressPreference = "SilentlyContinue"
$solutionPath = Split-Path $MyInvocation.MyCommand.Definition
$sdkFile = Join-Path $solutionPath "global.json"
$libraryProjects = @(
(Join-Path $solutionPath "src\JustSaying\JustSaying.csproj"),
(Join-Path $solutionPath "src\JustSaying.Models\JustSaying.Models.csproj"),
(Join-Path $solutionPath "src\JustSaying.Extensions.DependencyInjection.Microsoft\JustSaying.Extensions.DependencyInjection.Microsoft.csproj"),
(Join-Path $solutionPath "src\JustSaying.Extensions.DependencyInjection.StructureMap\JustSaying.Extensions.DependencyInjection.StructureMap.csproj")
)
$testProjects = @(
(Join-Path $solutionPath "tests\JustSaying.UnitTests\JustSaying.UnitTests.csproj")
)
if ($EnableIntegrationTests -eq $true) {
$testProjects += (Join-Path $solutionPath "tests\JustSaying.IntegrationTests\JustSaying.IntegrationTests.csproj");
$testProjects += (Join-Path $solutionPath "tests\JustSaying.Extensions.DependencyInjection.StructureMap.Tests\JustSaying.Extensions.DependencyInjection.StructureMap.Tests.csproj");
}
$dotnetVersion = (Get-Content $sdkFile | Out-String | ConvertFrom-Json).sdk.version
if ($OutputPath -eq "") {
$OutputPath = Join-Path "$(Convert-Path "$PSScriptRoot")" "artifacts"
}
$installDotNetSdk = $false;
if (($null -eq (Get-Command "dotnet" -ErrorAction SilentlyContinue)) -and ($null -eq (Get-Command "dotnet.exe" -ErrorAction SilentlyContinue))) {
Write-Host "The .NET SDK is not installed."
$installDotNetSdk = $true
}
else {
Try {
$installedDotNetVersion = (dotnet --version 2>&1 | Out-String).Trim()
}
Catch {
$installedDotNetVersion = "?"
}
if ($installedDotNetVersion -ne $dotnetVersion) {
Write-Host "The required version of the .NET SDK is not installed. Expected $dotnetVersion."
$installDotNetSdk = $true
}
}
if ($installDotNetSdk -eq $true) {
$env:DOTNET_INSTALL_DIR = Join-Path "$(Convert-Path "$PSScriptRoot")" ".dotnetcli"
$sdkPath = Join-Path $env:DOTNET_INSTALL_DIR "sdk\$dotnetVersion"
if (!(Test-Path $sdkPath)) {
if (!(Test-Path $env:DOTNET_INSTALL_DIR)) {
mkdir $env:DOTNET_INSTALL_DIR | Out-Null
}
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor "Tls12"
if (($PSVersionTable.PSVersion.Major -ge 6) -And !$IsWindows) {
$installScript = Join-Path $env:DOTNET_INSTALL_DIR "install.sh"
Invoke-WebRequest "https://dot.net/v1/dotnet-install.sh" -OutFile $installScript -UseBasicParsing
chmod +x $installScript
& $installScript --version "$dotnetVersion" --install-dir "$env:DOTNET_INSTALL_DIR" --no-path
}
else {
$installScript = Join-Path $env:DOTNET_INSTALL_DIR "install.ps1"
Invoke-WebRequest "https://dot.net/v1/dotnet-install.ps1" -OutFile $installScript -UseBasicParsing
& $installScript -Version "$dotnetVersion" -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath
}
}
}
else {
$env:DOTNET_INSTALL_DIR = Split-Path -Path (Get-Command dotnet).Path
}
$dotnet = Join-Path "$env:DOTNET_INSTALL_DIR" "dotnet"
if (($installDotNetSdk -eq $true) -And ($null -eq $env:TF_BUILD)) {
$env:PATH = "$env:DOTNET_INSTALL_DIR;$env:PATH"
}
function DotNetPack {
param([string]$Project)
$additionalArgs = @()
if ($VersionSuffix) {
$additionalArgs += "--version-suffix"
$additionalArgs += $VersionSuffix
}
& $dotnet pack $Project --output (Join-Path $OutputPath "packages") --configuration $Configuration $additionalArgs
if ($LASTEXITCODE -ne 0) {
throw "dotnet pack failed with exit code $LASTEXITCODE"
}
}
function DotNetTest {
param([string]$Project)
$additionalArgs = @()
if (![string]::IsNullOrEmpty($env:GITHUB_SHA)) {
$additionalArgs += "--logger"
$additionalArgs += "GitHubActions;report-warnings=false"
}
& $dotnet test $Project --output $OutputPath --configuration $Configuration $additionalArgs
if ($LASTEXITCODE -ne 0) {
throw "dotnet test failed with exit code $LASTEXITCODE"
}
}
Write-Host "Creating packages..." -ForegroundColor Green
ForEach ($libraryProject in $libraryProjects) {
DotNetPack $libraryProject
}
if (($null -ne $env:CI) -And ($EnableIntegrationTests -eq $true)) {
& docker pull --quiet localstack/localstack:2.0.2
& docker run -d --name localstack -p 4566:4566 localstack/localstack:2.0.2
$env:AWS_SERVICE_URL = "http://localhost:4566"
}
if ($SkipTests -eq $false) {
Write-Host "Running tests..." -ForegroundColor Green
Remove-Item -Path (Join-Path $OutputPath "coverage.json") -Force -ErrorAction SilentlyContinue | Out-Null
ForEach ($testProject in $testProjects) {
DotNetTest $testProject
}
}