-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.ps1
482 lines (393 loc) · 14.4 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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# SPDX-License-Identifier: Apache-2.0
# Licensed to the Ed-Fi Alliance under one or more agreements.
# The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
# See the LICENSE and NOTICES files in the project root for more information.
[CmdLetBinding()]
<#
.SYNOPSIS
Automation script for running build operations from the command line.
.DESCRIPTION
Provides automation of the following tasks:
* SetUp: installs NuGet and Python to \tools
* Clean: runs `dotnet clean`
* Build: runs `dotnet build` with several implicit steps
(clean, restore, inject version information).
* UnitTest: executes NUnit tests in projects named `*.UnitTests`, which
do not connect to a database.
* IntegrationTest: executes NUnit tests in projects named `*.Test`,
which connect to a database. Includes drop and deploy operations for
installing fresh test databases.
* BuildAndTest: executes the Build, UnitTest, and IntegrationTest
commands.
* Package: builds pre-release and release NuGet packages for the Data Import
web application.
* Push: uploads a NuGet package to the NuGet feed.
* BuildAndDeployToDockerContainer: runs the build operation, update the appsettings.json with provided
DockerEnvValues and copy over the latest files to existing DataImport docker container for testing.
.EXAMPLE
.\build.ps1 build -Configuration Release -Version "2.0.0"
Overrides the default build configuration (Debug) to build in release
mode with assembly version 2.0.0.45.
.EXAMPLE
.\build.ps1 unittest
Output: test results displayed in the console and saved to XML files.
.EXAMPLE
.\build.ps1 integrationtest
Output: test results displayed in the console and saved to XML files.
.EXAMPLE
.\build.ps1 package -Version "2.0.0"
Output: NuGet package, with version 2.0.0.
.EXAMPLE
.\build.ps1 push -NuGetApiKey $env:nuget_key
.EXAMPLE
$p = @{
ProductionApiUrl = "http://api"
ApiExternalUrl = "https://localhost:5001"
AppStartup = "OnPrem"
XsdFolder = "/app/Schema"
ApiStartupType = "SharedInstance"
DatabaseEngine = "PostgreSql"
BulkUploadHashCache = "/app/BulkUploadHashCache/"
EncryptionKey = "<Generated encryption key>"
DefaultConnection = "host=db-dataimport;port=5432;username=username;password=password;database=DataImport;Application Name=EdFi.DataImport;"
}
.\build.ps1 -Version "2.1.1" -Configuration Release -DockerEnvValues $p -Command BuildAndDeployToDockerContainer
#>
param(
# Command to execute, defaults to "Build".
[string]
[ValidateSet("SetUp", "Clean", "Build", "UnitTest", "IntegrationTest", "PowerShellTests", "Package", "Push", "BuildAndTest", "BuildAndPublish", "BuildAndDeployToDockerContainer", "Run")]
$Command = "Build",
# Assembly and package version number. The current package number is
# configured in the build automation tool and passed to this script.
[string]
$Version = "0.1.0",
# .NET project build configuration, defaults to "Debug". Options are: Debug, Release.
[string]
[ValidateSet("Debug", "Release")]
$Configuration = "Debug",
# Ed-Fi's official NuGet package feed for package download and distribution.
[string]
$EdFiNuGetFeed = "https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_packaging/EdFi/nuget/v3/index.json",
# API key for accessing the feed above. Only required with with the Push
# command.
[string]
$NuGetApiKey,
# Full path of a package file to push to the NuGet feed. Optional, only
# applies with the Push command. If not set, then the script looks for a
# NuGet package corresponding to the provided $Version.
[string]
$PackageFile,
# Environment values for updating the appsettings on existing DataImport docker container.
# Only required with the BuildAndDeployToDockerContainer command.
[hashtable]
$DockerEnvValues,
# Only required with the Run command.
[string]
[ValidateSet("mssql", "pg")]
$LaunchProfile,
#Generate Test Report
[switch]
$Report,
# Only required with the Push command.
[string]
[ValidateSet("Web", "TransformLoad")]
$PackageFileType,
# Only required with local builds and testing.
[switch]
$IsLocalBuild
)
$Env:MSBUILDDISABLENODEREUSE = "1"
$solution = "DataImport.sln"
$solutionRoot = "$PSScriptRoot"
$entryProject = "DataImport.Web"
$transformLoadProject = "DataImport.Server.TransformLoad"
$maintainers = "Ed-Fi Alliance, LLC and contributors"
$appCommonPackageName = "EdFi.Installer.AppCommon"
$appCommonPackageVersion = "3.1.0"
Import-Module -Name "$PSScriptRoot/eng/build-helpers.psm1" -Force
Import-Module -Name "$PSScriptRoot/eng/package-manager.psm1" -Force
function DotNetClean {
Invoke-Execute { dotnet clean $solutionRoot -c $Configuration --nologo -v minimal }
}
function InitializePython {
$toolsDir = "$PSScriptRoot/.tools"
if (-not (Test-Path "$toolsDir")) {
New-Item -ItemType Directory -Force -Path "$toolsDir" | Out-Null
}
$python = "$toolsDir\python\python.exe"
if (-not (Test-Path $python)) {
$sourcePythonZip = "https://www.python.org/ftp/python/3.10.2/python-3.10.2-embed-amd64.zip"
$destPythonZip = "$toolsDir\python-3.10.2-embed-amd64.zip"
Write-Information "Downloading python 3.10.2 official release"
Invoke-WebRequest $sourcePythonZip -OutFile $destPythonZip
Expand-Archive $destPythonZip -DestinationPath "$toolsDir\python"
Remove-Item $destPythonZip
}
}
function DotNetClean {
Invoke-Execute { dotnet clean $solutionRoot -c $Configuration --nologo -v minimal }
}
function Restore {
Invoke-Execute { dotnet restore $solution }
}
function AssemblyInfo {
Invoke-Execute {
$assembly_version = $Version
Invoke-RegenerateFile "$solutionRoot/Directory.Build.props" @"
<Project>
<!-- This file is generated by the build script. -->
<PropertyGroup>
<Product>Ed-Fi DataImport</Product>
<Authors>$maintainers</Authors>
<Company>$maintainers</Company>
<Copyright>Copyright © 2016 Ed-Fi Alliance</Copyright>
<VersionPrefix>$assembly_version</VersionPrefix>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
</Project>
"@
}
}
function Compile {
Invoke-Execute {
dotnet --info
dotnet build $solutionRoot -c $Configuration --nologo --no-restore
}
}
function PublishWeb {
Invoke-Execute {
$outputPath = "$solutionRoot/$entryProject/publish"
$project = "$solutionRoot/$entryProject/"
dotnet publish $project -c $Configuration /p:EnvironmentName=Production -o $outputPath --no-build --nologo
}
}
function PublishTransformLoad {
Invoke-Execute {
$outputPath = "$solutionRoot/$transformLoadProject/publish/fdd"
$project = "$solutionRoot/$transformLoadProject/"
dotnet publish $project -c $Configuration /p:EnvironmentName=Production -o $outputPath --no-build --nologo
}
}
function PublishTransformLoadSelfContained {
Invoke-Execute {
$outputPath = "$solutionRoot/$transformLoadProject/publish/scd"
$project = "$solutionRoot/$transformLoadProject/"
dotnet publish $project -c $Configuration /p:EnvironmentName=Production -o $outputPath -r win-x64 --nologo --self-contained true
}
}
function RunTests {
param (
# File search filter
[string]
$Filter
)
if ($Report) {
Invoke-Execute { dotnet test -c $Configuration --filter $Filter --logger "trx;LogFileName=test-results.trx" }
}
else {
Invoke-Execute { dotnet test -c $Configuration --filter $Filter }
}
}
function UnitTests {
Invoke-Execute { RunTests -Filter "FullyQualifiedName~.UnitTests" }
}
function ResetTestDatabases {
param (
[string]
$OdsPackageName,
[string]
$OdsVersion,
[switch]
$Prerelease
)
Invoke-Execute {
$arguments = @{
RestApiPackageVersion = $OdsVersion
RestApiPackageName = $OdsPackageName
UseIntegratedSecurity = $true
RestApiPackagePrerelease = $Prerelease
NuGetFeed = $EdFiNuGetFeed
}
Invoke-PrepareDatabasesForTesting @arguments
}
}
function IntegrationTests {
Invoke-Execute { RunTests -Filter "FullyQualifiedName~Models.Tests&Category!=PowerShellTests" }
Invoke-Execute { RunTests -Filter "FullyQualifiedName~TransformLoad.Tests&Category!=PowerShellTests" }
Invoke-Execute { RunTests -Filter "FullyQualifiedName~Web.Tests&Category!=PowerShellTests" }
}
function PowerShellTests {
Invoke-Execute { RunTests -Filter "FullyQualifiedName~.Tests&Category=PowerShellTests" }
}
function RunDotNetPack {
param (
[string]
$PackageVersion,
[string]
$ProjectName,
[string]
$NuspecFileName
)
dotnet pack "$ProjectName.csproj" --no-build --no-restore --output "$PSScriptRoot" --configuration $Configuration -p:NuspecFile="$NuspecFileName.nuspec" -p:NuspecProperties="version=$PackageVersion"
}
function NewDevCertificate {
Invoke-Command { dotnet dev-certs https -c }
if ($lastexitcode) {
Write-Information "Generating a new Dev Certificate"
Invoke-Execute { dotnet dev-certs https --clean }
Invoke-Execute { dotnet dev-certs https -t }
}
else {
Write-Information "Dev Certificate already exists"
}
}
function BuildPackage {
$baseProjectFullName = "$solutionRoot/$entryProject/$entryProject"
RunDotNetPack -PackageVersion $Version -projectName $baseProjectFullName $baseProjectFullName
}
function PushPackage {
param (
[string]
$PackageVersion = $Version
)
if (-not $NuGetApiKey) {
throw "Cannot push a NuGet package without providing an API key in the `NuGetApiKey` argument."
}
if (-not $PackageFile) {
if ("Web" -ieq $PackageFileType) {
$PackageFile = "$PSScriptRoot/$entryProject.$PackageVersion.nupkg"
DotnetPush $PackageFile
}
else {
$PackageFile = "$PSScriptRoot/$transformLoadProject.$PackageVersion.nupkg"
DotnetPush $PackageFile
$PackageFileWin64 = "$PSScriptRoot/$transformLoadProject.Win64.$PackageVersion.nupkg"
DotnetPush $PackageFileWin64
}
}
else {
DotnetPush $PackageFile
}
}
function DotnetPush {
param (
[string]
$PackageFileName
)
Write-Information "Pushing $PackageFileName to $EdFiNuGetFeed"
dotnet nuget push $PackageFileName --api-key $NuGetApiKey --source $EdFiNuGetFeed
}
function Invoke-Build {
Write-Information "Building Version $Version"
Invoke-Step { DotNetClean }
Invoke-Step { Restore }
Invoke-Step { Compile }
}
function Invoke-Publish {
Invoke-Step { PublishWeb }
Invoke-Step { PublishTransformLoad }
Invoke-Step { PublishTransformLoadSelfContained }
}
function Invoke-Run {
Write-Information "Running Data Import"
Invoke-Step { NewDevCertificate }
$projectFilePath = "$solutionRoot/$entryProject"
if ([string]::IsNullOrEmpty($LaunchProfile)) {
Write-Information "LaunchProfile parameter is required for running Data Import. Please specify the LaunchProfile parameter. Valid values include 'mssql-district', 'mssql-shared', 'mssql-year', 'pg-district', 'pg-shared' and 'pg-year'"
}
else {
Invoke-Execute { dotnet run --project $projectFilePath --launch-profile $LaunchProfile }
}
}
function Invoke-SetUp {
Invoke-Step { InitializePython }
}
function Invoke-Clean {
Invoke-Step { DotNetClean }
}
function Invoke-UnitTest {
Invoke-Step { UnitTests }
}
function Invoke-IntegrationTest {
Invoke-Step { IntegrationTests }
}
function Invoke-PowerShellTest {
Invoke-Step { PowerShellTests }
}
function Invoke-BuildPackage {
Invoke-Step { AddAppCommonPackageForInstaller }
Invoke-Step { BuildPackage }
}
function Invoke-BuildTransformLoadPackage {
Invoke-Step { BuildTransformLoadPackage }
}
function Invoke-PushPackage {
Invoke-Step { PushPackage }
}
function UpdateAppSettingsForDocker {
$filePath = "$solutionRoot/$entryProject/publish/appsettings.json"
$json = (Get-Content -Path $filePath) | ConvertFrom-Json
Write-Output $DockerEnvValues | Out-Host
$json.ConnectionStrings.defaultConnection = $DockerEnvValues["defaultConnection"]
$json | ConvertTo-Json | Set-Content $filePath
}
function CopyLatestFilesToContainer {
$source = "$solutionRoot/$entryProject/publish/."
docker cp $source dataimport:/app
}
function RestartDataImportContainer {
&docker restart dataimport
}
function Invoke-DockerDeploy {
Invoke-Step { UpdateAppSettingsForDocker }
Invoke-Step { CopyLatestFilesToContainer }
Invoke-Step { RestartDataImportContainer }
}
function Invoke-SetAssemblyInfo {
Write-Output "Setting Assembly Information"
Invoke-Step { AssemblyInfo }
}
function AddAppCommonPackageForInstaller {
$destinationPath = "$PSScriptRoot/Installer"
$arguments = @{
AppCommonPackageName = $appCommonPackageName
AppCommonPackageVersion = $appCommonPackageVersion
NuGetFeed = $EdFiNuGetFeed
DestinationPath = $destinationPath
}
Add-AppCommon @arguments
}
Invoke-Main {
if ($IsLocalBuild) {
$nugetExePath = Install-NugetCli
Set-Alias nuget $nugetExePath -Scope Global -Verbose
}
switch ($Command) {
SetUp { Invoke-SetUp }
Clean { Invoke-Clean }
Build { Invoke-Build }
BuildAndPublish {
Invoke-SetAssemblyInfo
Invoke-Build
Invoke-Publish
}
Run { Invoke-Run }
UnitTest { Invoke-UnitTest }
IntegrationTest { Invoke-IntegrationTest }
PowerShellTests { Invoke-PowerShellTest }
BuildAndTest {
Invoke-Build
Invoke-UnitTest
Invoke-IntegrationTest
Invoke-PowerShellTest
}
Package { Invoke-BuildPackage }
Push { Invoke-PushPackage }
BuildAndDeployToDockerContainer {
Invoke-Build
Invoke-DockerDeploy
}
default { throw "Command '$Command' is not recognized" }
}
}