-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSteamPS.build.ps1
235 lines (196 loc) · 6.85 KB
/
SteamPS.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
[CmdletBinding()]
param(
[ValidateSet('Debug', 'Release')]
[string] $Configuration = 'Debug'
)
$script:SteamPSModulePath = [IO.Path]::Combine($PSScriptRoot, 'SteamPS')
$manifestItem = Get-Item ([IO.Path]::Combine($SteamPSModulePath, '*.psd1'))
$ModuleName = $manifestItem.BaseName
$psm1 = Join-Path $SteamPSModulePath -ChildPath ($ModuleName + '.psm1')
$testModuleManifestSplat = @{
Path = $manifestItem.FullName
ErrorAction = 'Ignore'
WarningAction = 'Ignore'
}
$Manifest = Test-ModuleManifest @testModuleManifestSplat
$ReleaseVersion = $env:GITHUB_REF -replace '^refs/tags/v(\d+\.\d+\.\d+)', '$1'
if ($Configuration -eq 'Release') {
$Version = $ReleaseVersion
} else {
$Version = $Manifest.Version
}
$BuildPath = [IO.Path]::Combine($PSScriptRoot, 'output')
$CSharpPath = [IO.Path]::Combine($PSScriptRoot, 'src', $ModuleName)
$isBinaryModule = Test-Path $CSharpPath
$ReleasePath = [IO.Path]::Combine($BuildPath, $ModuleName, $Version)
$UseNativeArguments = $PSVersionTable.PSVersion -gt '7.0'
task Clean {
if (Test-Path $ReleasePath) {
Remove-Item $ReleasePath -Recurse -Force
}
New-Item -ItemType Directory $ReleasePath | Out-Null
}
task BuildDocs {
$helpParams = @{
Path = [IO.Path]::Combine($PSScriptRoot, 'docs', 'en-US')
OutputPath = [IO.Path]::Combine($ReleasePath, 'en-US')
}
New-ExternalHelp @helpParams | Out-Null
}
task BuildPowerShell {
$buildModuleSplat = @{
SourcePath = $SteamPSModulePath
OutputDirectory = $ReleasePath
Encoding = 'UTF8Bom'
IgnoreAlias = $true
}
if ($Configuration -eq 'Release') {
$buildModuleSplat['SemVer'] = $ReleaseVersion
}
if (Test-Path $psm1) {
$buildModuleSplat['Suffix'] = Get-Content $psm1 -Raw
}
Build-Module @buildModuleSplat
}
task BuildManaged {
if (-not $isBinaryModule) {
Write-Host 'No C# source path found. Skipping BuildManaged...'
return
}
$arguments = @(
'publish'
'--configuration', $Configuration
'--verbosity', 'q'
'-nologo'
"-p:Version=$Version"
)
Push-Location -LiteralPath $CSharpPath
try {
foreach ($framework in $TargetFrameworks) {
Write-Host "Compiling for $framework"
dotnet @arguments --framework $framework
if ($LASTEXITCODE) {
throw "Failed to compiled code for $framework"
}
}
} finally {
Pop-Location
}
}
task CopyToRelease {
foreach ($framework in $TargetFrameworks) {
$buildFolder = [IO.Path]::Combine($CSharpPath, 'bin', $Configuration, $framework, 'publish')
$binFolder = [IO.Path]::Combine($ReleasePath, 'bin', $framework, $_.Name)
if (-not (Test-Path -LiteralPath $binFolder)) {
New-Item -Path $binFolder -ItemType Directory | Out-Null
}
Copy-Item ([IO.Path]::Combine($buildFolder, '*')) -Destination $binFolder -Recurse
}
}
task Package {
$nupkgPath = [IO.Path]::Combine($BuildPath, "$ModuleName.$Version*.nupkg")
if (Test-Path $nupkgPath) {
Remove-Item $nupkgPath -Force
}
$repoParams = @{
Name = 'LocalRepo'
SourceLocation = $BuildPath
PublishLocation = $BuildPath
InstallationPolicy = 'Trusted'
}
if (Get-PSRepository -Name $repoParams.Name -ErrorAction SilentlyContinue) {
Unregister-PSRepository -Name $repoParams.Name
}
Register-PSRepository @repoParams
try {
Publish-Module -Path $ReleasePath -Repository $repoParams.Name
} finally {
Unregister-PSRepository -Name $repoParams.Name
}
}
task Analyze {
$analyzerPath = [IO.Path]::Combine($PSScriptRoot, 'PSScriptAnalyzerSettings.psd1')
if (-not (Test-Path $analyzerPath)) {
Write-Host 'No analyzer rules found, skipping...'
return
}
$pssaSplat = @{
Path = $ReleasePath
Settings = [IO.Path]::Combine($PSScriptRoot, 'PSScriptAnalyzerSettings.psd1')
Recurse = $true
ErrorAction = 'SilentlyContinue'
}
$results = Invoke-ScriptAnalyzer @pssaSplat
if ($null -ne $results) {
$results | Out-String
throw 'Failed PsScriptAnalyzer tests, build failed'
}
}
task DoUnitTest {
$testsPath = [IO.Path]::Combine($PSScriptRoot, 'Tests', 'units')
if (-not (Test-Path -LiteralPath $testsPath)) {
Write-Host 'No unit tests found, skipping...'
return
}
$resultsPath = [IO.Path]::Combine($BuildPath, 'TestResults')
if (-not (Test-Path -LiteralPath $resultsPath)) {
New-Item $resultsPath -ItemType Directory -ErrorAction Stop | Out-Null
}
$tempResultsPath = [IO.Path]::Combine($resultsPath, 'TempUnit')
if (Test-Path -LiteralPath $tempResultsPath) {
Remove-Item -LiteralPath $tempResultsPath -Force -Recurse
}
New-Item -Path $tempResultsPath -ItemType Directory | Out-Null
try {
$runSettingsPrefix = 'DataCollectionRunSettings.DataCollectors.DataCollector.Configuration'
$arguments = @(
'test'
$testsPath
'--results-directory', $tempResultsPath
if ($Configuration -eq 'Debug') {
'--collect:"XPlat Code Coverage"'
'--'
"$runSettingsPrefix.Format=json"
if ($UseNativeArguments) {
"$runSettingsPrefix.IncludeDirectory=`"$CSharpPath`""
} else {
"$runSettingsPrefix.IncludeDirectory=\`"$CSharpPath\`""
}
}
)
Write-Host 'Running unit tests'
dotnet @arguments
if ($LASTEXITCODE) {
throw 'Unit tests failed'
}
if ($Configuration -eq 'Debug') {
Move-Item -Path $tempResultsPath/*/*.json -Destination $resultsPath/UnitCoverage.json -Force
}
} finally {
Remove-Item -LiteralPath $tempResultsPath -Force -Recurse
}
}
task DoTest {
$testsPath = [IO.Path]::Combine($PSScriptRoot, 'Tests')
if (-not (Test-Path $testsPath)) {
Write-Host 'No Pester tests found, skipping...'
return
}
$resultsPath = [IO.Path]::Combine($BuildPath, 'TestResults')
if (-not (Test-Path $resultsPath)) {
New-Item $resultsPath -ItemType Directory -ErrorAction Stop | Out-Null
}
Get-ChildItem -LiteralPath $resultsPath |
Remove-Item -ErrorAction Stop -Force
$pesterScript = [IO.Path]::Combine($PSScriptRoot, 'tools', 'PesterTest.ps1')
$testArgs = @{
TestPath = $testsPath
ResultPath = $resultsPath
SourceRoot = $SteamPSModulePath
ReleasePath = $ReleasePath
}
& $pesterScript @testArgs
}
task Build -Jobs Clean, BuildManaged, BuildPowerShell, CopyToRelease, BuildDocs, Package
task Test -Jobs BuildManaged, Analyze, DoUnitTest, DoTest
task . Build