forked from code-cracker/code-cracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.targets.ps1
200 lines (180 loc) · 7.64 KB
/
build.targets.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
Properties {
$rootDir = Split-Path $psake.build_script_file
$solutionFileCS = "$rootDir\CodeCracker.CSharp.sln"
$solutionFileVB = "$rootDir\CodeCracker.VisualBasic.sln"
$srcDir = "$rootDir\src"
$testDir = "$rootDir\test"
$isAppVeyor = $env:APPVEYOR -eq $true
$slns = ls "$rootDir\*.sln"
$packagesDir = "$rootDir\packages"
$buildNumber = [Convert]::ToInt32($env:APPVEYOR_BUILD_NUMBER).ToString("0000")
$nuspecPathCS = "$rootDir\src\CSharp\CodeCracker\CodeCracker.nuspec"
$nuspecPathVB = "$rootDir\src\VisualBasic\CodeCracker\CodeCracker.nuspec"
$nuspecPathJoint = "$rootDir\src\CodeCracker.nuspec"
$nugetExe = "$packagesDir\NuGet.CommandLine.2.8.5\tools\NuGet.exe"
$nupkgPathCS = "$rootDir\src\CSharp\CodeCracker.CSharp.{0}.nupkg"
$nupkgPathVB = "$rootDir\src\VisualBasic\CodeCracker.VisualBasic.{0}.nupkg"
$nupkgPathJoint = "$rootDir\CodeCracker.{0}.nupkg"
$xunitConsoleExe = "$packagesDir\xunit.runner.console.2.0.0\tools\xunit.console.x86.exe"
$openCoverExe = "$packagesDir\OpenCover.4.6.166\tools\OpenCover.Console.exe"
$testDllCS = "CodeCracker.Test.CSharp.dll"
$testDllVB = "CodeCracker.Test.VisualBasic.dll"
$testDirCS = "$testDir\CSharp\CodeCracker.Test\bin\Debug"
$testDirVB = "$testDir\VisualBasic\CodeCracker.Test\bin\Debug"
$logDir = "$rootDir\log"
$outputXml = "$logDir\CodeCoverageResults.xml"
$reportGeneratorExe = "$packagesDir\ReportGenerator.2.1.8.0\tools\ReportGenerator.exe"
$coverageReportDir = "$logDir\codecoverage\"
$converallsNetExe = "$packagesDir\coveralls.io.1.3.4\tools\coveralls.net.exe"
$isRelease = $isAppVeyor -and ($env:APPVEYOR_REPO_BRANCH -eq "release")
$isPullRequest = $env:APPVEYOR_PULL_REQUEST_NUMBER -ne $null
}
FormatTaskName (("-"*25) + "[{0}]" + ("-"*25))
Task Default -Depends Build, Test
Task Rebuild -Depends Clean, Build
Task Restore {
Foreach($sln in $slns) {
RestorePkgs $sln
}
}
Task Prepare-Build -depends Restore, Update-Nuspec
Task Build -depends Prepare-Build, Build-Only
Task Build-CS -depends Prepare-Build, Build-Only-CS
Task Build-VB -depends Prepare-Build, Build-Only-VB
Task Build-Only -depends Build-Only-CS, Build-Only-VB
Task Build-Only-CS {
if ($isAppVeyor) {
Exec { msbuild $solutionFileCS /m /verbosity:minimal /p:Configuration=DebugNoVsix /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" }
} else {
Exec { msbuild $solutionFileCS /m /verbosity:minimal /p:Configuration=DebugNoVsix }
}
}
Task Build-Only-VB {
if ($isAppVeyor) {
Exec { msbuild $solutionFileVB /m /verbosity:minimal /p:Configuration=DebugNoVsix /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" }
} else {
Exec { msbuild $solutionFileVB /m /verbosity:minimal /p:Configuration=DebugNoVsix }
}
}
Task Clean {
Exec { msbuild $solutionFileCS /t:Clean /v:quiet }
Exec { msbuild $solutionFileVB /t:Clean /v:quiet }
}
Task Set-Log {
if ((Test-Path $logDir) -eq $false)
{
Write-Host -ForegroundColor DarkBlue "Creating log directory $logDir"
mkdir $logDir | Out-Null
}
}
Task Test-Acceptance -depends Test {
. "$rootDir\test\CSharp\AnalyzeCoreFx.ps1"
}
Task Test -depends Set-Log {
RunTestWithCoverage "$testDirCS\$testDllCS", "$testDirVB\$testDllVB"
}
Task Test-VB -depends Set-Log {
RunTestWithCoverage "$testDirVB\$testDllVB"
}
Task Test-CSharp -depends Set-Log {
RunTestWithCoverage "$testDirCS\$testDllCS"
}
Task Test-No-Coverage -depends Test-No-Coverage-CSharp, Test-No-Coverage-VB
Task Test-No-Coverage-VB {
RunTest "$testDirVB\$testDllVB"
}
Task Test-No-Coverage-CSharp {
RunTest "$testDirCS\$testDllCS"
}
Task Update-Nuspec -precondition { return $isAppVeyor -and ($isRelease -ne $true) } -depends Update-Nuspec-Joint
Task Update-Nuspec-Joint -precondition { return $isAppVeyor -and ($isRelease -ne $true) } -depends Update-Nuspec-CSharp, Update-Nuspec-VB {
UpdateNuspec $nuspecPathJoint "joint package"
}
Task Update-Nuspec-CSharp -precondition { return $isAppVeyor -and ($isRelease -ne $true) } {
UpdateNuspec $nuspecPathCS "C#"
}
Task Update-Nuspec-VB -precondition { return $isAppVeyor -and ($isRelease -ne $true) } {
UpdateNuspec $nuspecPathVB "VB"
}
Task Pack-Nuget -precondition { return $isAppVeyor } -depends Pack-Nuget-Joint
Task Pack-Nuget-Joint -precondition { return $isAppVeyor } -depends Pack-Nuget-Csharp, Pack-Nuget-VB {
PackNuget "Joint package" "$rootDir" $nuspecPathJoint $nupkgPathJoint
}
Task Pack-Nuget-CSharp -precondition { return $isAppVeyor } {
PackNuget "C#" "$rootDir\src\CSharp" $nuspecPathCS $nupkgPathCS
}
Task Pack-Nuget-VB -precondition { return $isAppVeyor } {
PackNuget "VB" "$rootDir\src\VisualBasic" $nuspecPathVB $nupkgPathVB
}
function PackNuget($language, $dir, $nuspecFile, $nupkgFile) {
Write-Host "Packing nuget for $language..."
[xml]$xml = cat $nuspecFile
$nupkgFile = $nupkgFile -f $xml.package.metadata.version
Write-Host "Nupkg path is $nupkgFile"
. $nugetExe pack $nuspecFile -Properties "Configuration=Debug;Platform=AnyCPU" -OutputDirectory $dir
ls $nupkgFile
Write-Host "Nuget packed for $language!"
Write-Host "Pushing nuget artifact for $language..."
appveyor PushArtifact $nupkgFile
Write-Host "Nupkg pushed for $language!"
}
function UpdateNuspec($nuspecPath, $language) {
write-host "Updating version in nuspec file for $language to $buildNumber"
[xml]$xml = cat $nuspecPath
$xml.package.metadata.version+="-$buildNumber"
write-host "Nuspec version will be $($xml.package.metadata.version)"
$xml.Save($nuspecPath)
write-host "Nuspec saved for $language!"
}
function RestorePkgs($sln) {
Write-Host "Restoring $sln..." -ForegroundColor Green
if (-Not (Test-Path $sln)) {
Write-Host "File $sln does not exist, exiting." -ForegroundColor DarkRed
return
}
exec { . $nugetExe restore $sln }
}
function TestPath($paths) {
$notFound = @()
foreach($path in $paths) {
if ((Test-Path $path) -eq $false)
{
$notFound += $path
}
}
$notFound
}
function RunTest($fullTestDllPath) {
if ($isAppVeyor) {
. $xunitConsoleExe $fullTestDllPath -appveyor -nologo -quiet
} else {
. $xunitConsoleExe $fullTestDllPath -nologo -quiet
}
}
function RunTestWithCoverage($fullTestDllPaths) {
$notFoundPaths = TestPath $openCoverExe, $xunitConsoleExe, $reportGeneratorExe
if ($notFoundPaths.length -ne 0) {
Write-Host -ForegroundColor DarkRed "Paths not found: "
foreach($path in $notFoundPaths) {
Write-Host -ForegroundColor DarkRed " $path"
}
throw "Paths for test executables not found"
}
$targetArgs = ""
Foreach($fullTestDllPath in $fullTestDllPaths) {
$targetArgs += $fullTestDllPath + " "
}
$targetArgs = $targetArgs.Substring(0, $targetArgs.Length - 1)
$appVeyor = ""
if ($isAppVeyor) {
$appVeyor = " -appveyor"
}
$arguments = '-register:user', "`"-target:$xunitConsoleExe`"", "`"-targetargs:$targetArgs $appVeyor -noshadow -nologo -quiet`"", "`"-filter:+[CodeCracker*]* -[CodeCracker.Test*]*`"", "`"-output:$outputXml`"", '-coverbytest:*.Test.*.dll', '-log:All', '-returntargetcode'
Exec { . $openCoverExe $arguments }
Write-Host -ForegroundColor DarkBlue "Exporting code coverage report"
Exec { . $reportGeneratorExe -verbosity:Info -reports:$outputXml -targetdir:$coverageReportDir }
if ($env:COVERALLS_REPO_TOKEN -ne $null) {
Write-Host -ForegroundColor DarkBlue "Uploading coverage report to Coveralls.io"
Exec { . $converallsNetExe --opencover $outputXml --full-sources }
}
}