-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathbuild-functions.psm1
143 lines (114 loc) · 5.57 KB
/
build-functions.psm1
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
$root = "$PSScriptRoot\.."
$artifactsDir = "$root\Artifacts"
$nugetOutDir = "$root\Artifacts\NuGet"
$testReportDir = "$root\Artifacts\Logs"
$testCoverageDir = "$root\Artifacts\Coverage"
$nuget = "$root\Tools\NuGet.exe"
$vswhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
$msbuildPath = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
if ($msbuildPath) {
$msbuild = join-path $msbuildPath 'MSBuild\Current\Bin\MSBuild.exe'
$msbuildx64 = join-path $msbuildPath 'MSBuild\Current\Bin\amd64\MSBuild.exe'
}
import-module $PSScriptRoot\build-pack-nano-nugets.psm1
function Remove-ArtifactsDir {
if (Test-Path $artifactsDir) {
write-host -foreground blue "Clean up...`n"
rm $artifactsDir -Recurse -Force -ErrorAction Stop
write-host -foreground blue "Clean up...END`n"
}
}
function Update-GeneratedCode {
write-host -foreground blue "Generate code...`n---"
dotnet run --project "$root/CodeGen"
if ($lastexitcode -ne 0) { exit 1 }
write-host -foreground blue "Generate code...END`n"
}
function Start-Build([boolean] $IncludeNanoFramework = $false) {
write-host -foreground blue "Start-Build...`n---"
$fileLoggerArg = "/logger:FileLogger,Microsoft.Build;logfile=$testReportDir\UnitsNet.msbuild.log"
$appVeyorLoggerDll = "C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
$appVeyorLoggerNetCoreDll = "C:\Program Files\AppVeyor\BuildAgent\dotnetcore\Appveyor.MSBuildLogger.dll"
$appVeyorLoggerArg = if (Test-Path "$appVeyorLoggerNetCoreDll") { "/logger:$appVeyorLoggerNetCoreDll" } else { "" }
dotnet build --configuration Release "$root\UnitsNet.sln" $fileLoggerArg $appVeyorLoggerArg
if ($lastexitcode -ne 0) { exit 1 }
if (-not $IncludeNanoFramework)
{
write-host -foreground yellow "Skipping .NET nanoFramework build."
}
else
{
write-host -foreground green "Build .NET nanoFramework."
$fileLoggerArg = "/logger:FileLogger,Microsoft.Build;logfile=$testReportDir\UnitsNet.NanoFramework.msbuild.log"
$appVeyorLoggerArg = if (Test-Path "$appVeyorLoggerDll") { "/logger:$appVeyorLoggerDll" } else { "" }
# msbuild does not auto-restore nugets for this project type
& "$nuget" restore "$root\UnitsNet.NanoFramework\GeneratedCode\UnitsNet.nanoFramework.sln"
# now build
& "$msbuildx64" "$root\UnitsNet.NanoFramework\GeneratedCode\UnitsNet.nanoFramework.sln" /verbosity:minimal /p:Configuration=Release /p:Platform="Any CPU" $fileLoggerArg $appVeyorLoggerArg
if ($lastexitcode -ne 0) { exit 1 }
}
write-host -foreground blue "Start-Build...END`n"
}
function Start-Tests {
$projectPaths = @(
"UnitsNet.Tests\UnitsNet.Tests.csproj",
"UnitsNet.NumberExtensions.Tests\UnitsNet.NumberExtensions.Tests.csproj",
"UnitsNet.Serialization.JsonNet.Tests\UnitsNet.Serialization.JsonNet.Tests.csproj"
)
# Parent dir must exist before xunit tries to write files to it
new-item -type directory -force $testReportDir 1> $null
new-item -type directory -force $testCoverageDir 1> $null
write-host -foreground blue "Run tests...`n---"
foreach ($projectPath in $projectPaths) {
$projectFileNameNoEx = [System.IO.Path]::GetFileNameWithoutExtension($projectPath)
$reportFile = "$testReportDir\${projectFileNameNoEx}.xunit.xml"
$coverageReportFile = "$testCoverageDir\${projectFileNameNoEx}.coverage.xml"
$projectDir = [System.IO.Path]::GetDirectoryName($projectPath)
# dotnet commands (xunit, dotcover) must run in same dir as project
push-location $projectDir
# Create coverage report for this test project
& dotnet dotcover test `
--dotCoverFilters="+:module=UnitsNet*;-:module=*Tests" `
--dotCoverOutput="$coverageReportFile" `
--dcReportType=DetailedXML
if ($lastexitcode -ne 0) { exit 1 }
pop-location
}
# Generate a summarized code coverage report for all test projects
& "Tools/reportgenerator.exe" -reports:"$root/Artifacts/Coverage/*.coverage.xml" -targetdir:"$root/Artifacts/Coverage" -reporttypes:HtmlSummary
write-host -foreground blue "Run tests...END`n"
}
function Start-PackNugets {
$projectPaths = @(
"UnitsNet\UnitsNet.csproj",
"UnitsNet.Serialization.JsonNet\UnitsNet.Serialization.JsonNet.csproj",
"UnitsNet.NumberExtensions\UnitsNet.NumberExtensions.csproj"
)
write-host -foreground blue "Pack nugets...`n---"
foreach ($projectPath in $projectPaths) {
dotnet pack --configuration Release -o $nugetOutDir "$root\$projectPath"
if ($lastexitcode -ne 0) { exit 1 }
}
if (-not $IncludeNanoFramework) {
write-host -foreground yellow "Skipping nanoFramework nuget pack."
} else {
write-host -foreground yellow "nanoFramework project not yet supported by dotnet CLI, using nuget.exe instead"
Invoke-BuildNanoNugets
}
write-host -foreground blue "Pack nugets...END`n"
}
function Compress-ArtifactsAsZip {
write-host -foreground blue "Zip artifacts...`n---"
$zipFileName = "UnitsNet.zip"
$tempZipFile = "$root\$zipFileName"
$zipFile = "$artifactsDir\$zipFileName"`
rm $tempZipFile -ErrorAction Ignore
rm $zipFile -ErrorAction Ignore
# Create zip file
add-type -assembly "system.io.compression.filesystem"
[IO.Compression.ZipFile]::CreateFromDirectory($artifactsDir, $tempZipFile)
mv $tempZipFile $zipFile
if (-not $?) { write-host -foreground red "Failed to move [$tempZipFile] to [$zipFileName]."; exit 1 }
write-host -foreground blue "Zip artifacts...END`n"
}
export-modulemember -function Start-NugetRestore, Remove-ArtifactsDir, Update-GeneratedCode, Start-Build, Start-SignedBuild, Start-Tests, Start-PackNugets, Compress-ArtifactsAsZip