forked from JudahGabriel/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.ps1
843 lines (688 loc) · 33 KB
/
default.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
Include ".\build_utils.ps1"
properties {
$base_dir = resolve-path .
$lib_dir = "$base_dir\SharedLibs"
$build_dir = "$base_dir\build"
$packages_dir = "$base_dir\packages"
$buildartifacts_dir = "$build_dir\"
$sln_file = "$base_dir\zzz_RavenDB_Release.sln"
$version = "2.5"
$tools_dir = "$base_dir\Tools"
$release_dir = "$base_dir\Release"
$uploader = "..\Uploader\S3Uploader.exe"
$global:configuration = "Release"
$core_db_dlls = @(
"Raven.Abstractions.???",
(Get-DependencyPackageFiles 'NLog.2'),
(Get-DependencyPackageFiles Microsoft.Web.Infrastructure),
"Jint.Raven.???",
"Lucene.Net.???",
"Microsoft.Data.Edm.???",
"Microsoft.WindowsAzure.Storage.???",
"Microsoft.Data.OData.???",
"Microsoft.WindowsAzure.ConfigurationManager.???",
"Lucene.Net.Contrib.Spatial.NTS.???", "Spatial4n.Core.NTS.???", "GeoAPI.dll", "NetTopologySuite.dll", "PowerCollections.dll",
"ICSharpCode.NRefactory.???", "ICSharpCode.NRefactory.CSharp.???", "Mono.Cecil.???",
"Esent.Interop.???",
"Raven.Database.???",
"AWS.Extensions.???", "AWSSDK.???" ,
"Microsoft.CompilerServices.AsyncTargetingPack.Net4.???" )
$web_dlls = ( @( "Raven.Web.???" ) + $core_db_dlls) |
ForEach-Object {
if ([System.IO.Path]::IsPathRooted($_)) { return $_ }
return "$build_dir\web\$_"
}
$web_files = @("..\DefaultConfigs\web.config", "..\DefaultConfigs\NLog.Ignored.config" )
$server_files = ( @( "Raven.Server.???", "sl5\Raven.Studio.xap", "..\DefaultConfigs\NLog.Ignored.config") + $core_db_dlls ) |
ForEach-Object {
if ([System.IO.Path]::IsPathRooted($_)) { return $_ }
return "$build_dir\$_"
}
$client_dlls = @( (Get-DependencyPackageFiles 'NLog.2'), "Raven.Client.MvcIntegration.???",
"Raven.Abstractions.???", "Raven.Client.Lightweight.???", "Microsoft.CompilerServices.AsyncTargetingPack.Net4.???") |
ForEach-Object {
if ([System.IO.Path]::IsPathRooted($_)) { return $_ }
return "$build_dir\$_"
}
$silverlight_dlls = @("Raven.Client.Silverlight.???", "AsyncCtpLibrary_Silverlight5.???", "DH.Scrypt.???", "Microsoft.CompilerServices.AsyncTargetingPack.Silverlight5.???") |
ForEach-Object {
if ([System.IO.Path]::IsPathRooted($_)) { return $_ }
return "$build_dir\sl5\$_"
}
$all_client_dlls = ( @( "Raven.Client.Embedded.???") + $client_dlls + $core_db_dlls ) |
ForEach-Object {
if ([System.IO.Path]::IsPathRooted($_)) { return $_ }
return "$build_dir\$_"
}
$test_prjs = @("Raven.Tests.dll","Raven.Bundles.Tests.dll" )
}
task default -depends Stable,Release
task Verify40 {
if( (ls "$env:windir\Microsoft.NET\Framework\v4.0*") -eq $null ) {
throw "Building Raven requires .NET 4.0, which doesn't appear to be installed on this machine"
}
}
task Clean {
Remove-Item -force -recurse $buildartifacts_dir -ErrorAction SilentlyContinue
Remove-Item -force -recurse $release_dir -ErrorAction SilentlyContinue
}
task Init -depends Verify40, Clean {
if($env:BUILD_NUMBER -ne $null) {
$env:buildlabel = $env:BUILD_NUMBER
}
if($env:buildlabel -eq $null) {
$env:buildlabel = "13"
}
$commit = Get-Git-Commit
(Get-Content "$base_dir\CommonAssemblyInfo.cs") |
Foreach-Object { $_ -replace ".13", ".$($env:buildlabel)" } |
Foreach-Object { $_ -replace "{commit}", $commit } |
Set-Content "$base_dir\CommonAssemblyInfo.cs" -Encoding UTF8
New-Item $release_dir -itemType directory -ErrorAction SilentlyContinue | Out-Null
New-Item $build_dir -itemType directory -ErrorAction SilentlyContinue | Out-Null
}
task Compile -depends Init {
"Dummy file so msbuild knows there is one here before embedding as resource." | Out-File "$base_dir\Raven.Database\Server\WebUI\Raven.Studio.xap"
$v4_net_version = (ls "$env:windir\Microsoft.NET\Framework\v4.0*").Name
exec { &"C:\Windows\Microsoft.NET\Framework\$v4_net_version\MSBuild.exe" "$base_dir\Utilities\Raven.ProjectRewriter\Raven.ProjectRewriter.csproj" /p:OutDir="$buildartifacts_dir\" }
exec { &"$build_dir\Raven.ProjectRewriter.exe" }
$dat = "$base_dir\..\BuildsInfo\RavenDB\Settings.dat"
$datDest = "$base_dir\Raven.Studio\Settings.dat"
echo $dat
if (Test-Path $dat) {
Copy-Item $dat $datDest -force
}
ElseIf ((Test-Path $datDest) -eq $false) {
New-Item $datDest -type file -force
}
Write-Host "Compiling with '$global:configuration' configuration" -ForegroundColor Yellow
exec { &"C:\Windows\Microsoft.NET\Framework\$v4_net_version\MSBuild.exe" "$sln_file" /p:Configuration=$global:configuration /p:nowarn="1591 1573" }
remove-item "$build_dir\nlog.config" -force -ErrorAction SilentlyContinue
}
task FullStorageTest {
$global:full_storage_test = $true
}
task Test -depends Compile {
Clear-Host
Write-Host $test_prjs
$xUnit = Get-PackagePath xunit.runners
$xUnit = "$xUnit\tools\xunit.console.clr4.exe"
Write-Host "xUnit location: $xUnit"
$test_prjs | ForEach-Object {
if($global:full_storage_test) {
$env:raventest_storage_engine = 'esent';
Write-Host "Testing $build_dir\$_ (esent)"
exec { &"$xUnit" "$build_dir\$_" }
}
else {
$env:raventest_storage_engine = $null;
Write-Host "Testing $build_dir\$_ (default)"
exec { &"$xUnit" "$build_dir\$_" }
}
}
}
task StressTest -depends Compile {
$xUnit = Get-PackagePath xunit.runners
$xUnit = "$xUnit\tools\xunit.console.clr4.exe"
@("Raven.StressTests.dll") | ForEach-Object {
Write-Host "Testing $build_dir\$_"
if($global:full_storage_test) {
$env:raventest_storage_engine = 'esent';
Write-Host "Testing $build_dir\$_ (esent)"
&"$xUnit" "$build_dir\$_"
}
else {
$env:raventest_storage_engine = $null;
Write-Host "Testing $build_dir\$_ (default)"
&"$xUnit" "$build_dir\$_"
}
}
}
task MeasurePerformance -depends Compile {
$RavenDbStableLocation = "F:\RavenDB"
$DataLocation = "F:\Data"
$LogsLocation = "F:\PerformanceLogs"
$stableBuildToTests = @(616, 573, 531, 499, 482, 457, 371)
$stableBuildToTests | ForEach-Object {
$RavenServer = $RavenDbStableLocation + "\RavenDB-Build-$_\Server"
Write-Host "Measure performance against RavenDB Build #$_, Path: $RavenServer"
exec { &"$build_dir\Raven.Performance.exe" "--database-location=$RavenDbStableLocation --build-number=$_ --data-location=$DataLocation --logs-location=$LogsLocation" }
}
}
task TestSilverlight -depends Compile, CopyServer {
try
{
$process = Start-Process "$build_dir\Output\Server\Raven.Server.exe" "--ram --set=Raven/Port==8079" -PassThru
$statLight = Get-PackagePath StatLight
$statLight = "$statLight\tools\StatLight.exe"
&$statLight "--XapPath=.\build\sl5\Raven.Tests.Silverlight.xap" "--OverrideTestProvider=MSTestWithCustomProvider" "--ReportOutputFile=.\build\Raven.Tests.Silverlight.Results.xml"
}
finally
{
if ($process -ne $null) {
Stop-Process -InputObject $process
}
}
}
task TestWinRT -depends Compile, CopyServer {
try
{
$process = Start-Process "$build_dir\Output\Server\Raven.Server.exe" "--ram --set=Raven/Port==8079" -PassThru
$xUnit = Get-PackagePath xunit.runners
$xUnit = "$xUnit\tools\xunit.console.clr4.exe"
@("Raven.Tests.WinRT.dll") | ForEach-Object {
Write-Host "Testing $build_dir\$_"
if($global:full_storage_test) {
$env:raventest_storage_engine = 'esent';
Write-Host "Testing $build_dir\$_ (esent)"
&"$xUnit" "$build_dir\$_"
}
else {
$env:raventest_storage_engine = $null;
Write-Host "Testing $build_dir\$_ (default)"
&"$xUnit" "$build_dir\$_"
}
}
}
finally
{
Stop-Process -InputObject $process
}
}
task ReleaseNoTests -depends Stable,DoRelease {
}
task Vnext3 {
$global:uploadCategory = "RavenDB-Unstable"
$global:uploadMode = "Vnext3"
}
task Unstable {
$global:uploadCategory = "RavenDB-Unstable"
$global:uploadMode = "Unstable"
}
task Stable {
$global:uploadCategory = "RavenDB"
$global:uploadMode = "Stable"
}
task RunTests -depends Test,TestSilverlight
task RunAllTests -depends FullStorageTest,Test,TestSilverlight,StressTest
task Release -depends RunTests,DoRelease
task CopySamples {
Remove-Item "$build_dir\Output\Samples\" -recurse -force -ErrorAction SilentlyContinue
Copy-Item "$base_dir\.nuget\" "$build_dir\Output\Samples\.nuget" -recurse -force
Copy-Item "$base_dir\CommonAssemblyInfo.cs" "$build_dir\Output\Samples\CommonAssemblyInfo.cs" -force
Copy-Item "$base_dir\Raven.Samples.sln" "$build_dir\Output\Samples" -force
Copy-Item $base_dir\Raven.VisualHost "$build_dir\Output\Samples\Raven.VisualHost" -recurse -force
$samples = Get-ChildItem $base_dir\Samples | Where-Object { $_.PsIsContainer }
$samples = $samples
foreach ($sample in $samples) {
Write-Output $sample
Copy-Item "$base_dir\Samples\$sample" "$build_dir\Output\Samples\$sample" -recurse -force
Remove-Item "$sample_dir\bin" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\obj" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard1\Data" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard2\Data" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard1\Plugins" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard2\Plugins" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard1\RavenDB.exe" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$sample_dir\Servers\Shard2\RavenDB.exe" -force -recurse -ErrorAction SilentlyContinue
}
$v4_net_version = (ls "$env:windir\Microsoft.NET\Framework\v4.0*").Name
exec { &"C:\Windows\Microsoft.NET\Framework\$v4_net_version\MSBuild.exe" "$base_dir\Utilities\Raven.Samples.PrepareForRelease\Raven.Samples.PrepareForRelease.csproj" /p:OutDir="$buildartifacts_dir\" }
exec { &"$build_dir\Raven.Samples.PrepareForRelease.exe" "$build_dir\Output\Samples\Raven.Samples.sln" "$build_dir\Output" }
}
task CreateOutpuDirectories -depends CleanOutputDirectory {
New-Item $build_dir\Output -Type directory -ErrorAction SilentlyContinue | Out-Null
New-Item $build_dir\Output\Server -Type directory | Out-Null
New-Item $build_dir\Output\Web -Type directory | Out-Null
New-Item $build_dir\Output\Web\bin -Type directory | Out-Null
New-Item $build_dir\Output\EmbeddedClient -Type directory | Out-Null
New-Item $build_dir\Output\Client -Type directory | Out-Null
New-Item $build_dir\Output\Silverlight -Type directory | Out-Null
New-Item $build_dir\Output\Bundles -Type directory | Out-Null
New-Item $build_dir\Output\Samples -Type directory | Out-Null
New-Item $build_dir\Output\Smuggler -Type directory | Out-Null
New-Item $build_dir\Output\Backup -Type directory | Out-Null
}
task CleanOutputDirectory {
Remove-Item $build_dir\Output -Recurse -Force -ErrorAction SilentlyContinue
}
task CopyEmbeddedClient {
$all_client_dlls | ForEach-Object { Copy-Item "$_" $build_dir\Output\EmbeddedClient }
}
task CopySilverlight {
$silverlight_dlls + @((Get-DependencyPackageFiles 'NLog.2' -FrameworkVersion sl4)) |
ForEach-Object { Copy-Item "$_" $build_dir\Output\Silverlight }
}
task CopySmuggler {
Copy-Item $build_dir\Raven.Abstractions.??? $build_dir\Output\Smuggler
Copy-Item $build_dir\Raven.Client.Lightweight.??? $build_dir\Output\Smuggler
Copy-Item $build_dir\Jint.Raven.??? $build_dir\Output\Smuggler
Copy-Item $build_dir\System.Reactive.Core.??? $build_dir\Output\Smuggler
Copy-Item $build_dir\Microsoft.CompilerServices.AsyncTargetingPack.Net4.??? $build_dir\Output\Smuggler
Copy-Item $build_dir\Raven.Smuggler.??? $build_dir\Output\Smuggler
}
task CopyBackup {
Copy-Item $build_dir\Raven.Abstractions.??? $build_dir\Output\Backup
Copy-Item $build_dir\Raven.Backup.??? $build_dir\Output\Backup
}
task CopyClient {
$client_dlls | ForEach-Object { Copy-Item "$_" $build_dir\Output\Client }
}
task CopyWeb {
$web_dlls | ForEach-Object { Copy-Item "$_" $build_dir\Output\Web\bin }
$web_files | ForEach-Object { Copy-Item "$build_dir\$_" $build_dir\Output\Web }
}
task CopyBundles {
$items = (Get-ChildItem $build_dir\Raven.Bundles.*.???) + (Get-ChildItem $build_dir\Raven.Client.*.???) |
Where-Object { $_.Name.Contains(".Tests.") -eq $false } | ForEach-Object { $_.FullName }
Copy-Item $items $build_dir\Output\Bundles
}
task CopyServer -depends CreateOutpuDirectories {
$server_files | ForEach-Object { Copy-Item "$_" $build_dir\Output\Server }
Copy-Item $base_dir\DefaultConfigs\RavenDb.exe.config $build_dir\Output\Server\Raven.Server.exe.config
}
task CopyInstaller {
if($env:buildlabel -eq 13)
{
return
}
Copy-Item $build_dir\RavenDB.Setup.exe "$release_dir\$global:uploadCategory-Build-$env:buildlabel.Setup.exe"
}
task SignInstaller {
if($env:buildlabel -eq 13)
{
return
}
$signTool = "C:\Program Files (x86)\Windows Kits\8.0\bin\x86\signtool.exe"
if (!(Test-Path $signTool))
{
$signTool = "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\signtool.exe"
if (!(Test-Path $signTool))
{
throw "Could not find SignTool.exe under the specified path $signTool"
}
}
$installerCert = "$base_dir\..\BuildsInfo\RavenDB\certs\installer.pfx"
if (!(Test-Path $installerCert))
{
throw "Could not find pfx file under the path $installerCert to sign the installer"
}
$certPasswordPath = "$base_dir\..\BuildsInfo\RavenDB\certs\installerCertPassword.txt"
if (!(Test-Path $certPasswordPath))
{
throw "Could not find the path for the certificate password of the installer"
}
$certPassword = Get-Content $certPasswordPath
if ($certPassword -eq $null)
{
throw "Certificate password must be provided"
}
$installerFile = "$release_dir\$global:uploadCategory-Build-$env:buildlabel.Setup.exe"
Exec { &$signTool sign /f "$installerCert" /p "$certPassword" /d "RavenDB" /du "http://ravendb.net" /t "http://timestamp.verisign.com/scripts/timstamp.dll" "$installerFile" }
}
task CreateDocs {
$v4_net_version = (ls "$env:windir\Microsoft.NET\Framework\v4.0*").Name
if($env:buildlabel -eq 13)
{
return
}
# we expliclty allows this to fail
exec { &"C:\Windows\Microsoft.NET\Framework\$v4_net_version\MSBuild.exe" "$base_dir\Raven.Docs.shfbproj" /p:OutDir="$buildartifacts_dir\" }
}
task CopyRootFiles -depends CreateDocs {
cp $base_dir\license.txt $build_dir\Output\license.txt
cp $base_dir\Scripts\Start.cmd $build_dir\Output\Start.cmd
cp $base_dir\Scripts\Raven-UpdateBundles.ps1 $build_dir\Output\Raven-UpdateBundles.ps1
cp $base_dir\Scripts\Raven-GetBundles.ps1 $build_dir\Output\Raven-GetBundles.ps1
cp $base_dir\readme.md $build_dir\Output\readme.txt
cp $base_dir\Help\Documentation.chm $build_dir\Output\Documentation.chm -ErrorAction SilentlyContinue
cp $base_dir\acknowledgments.txt $build_dir\Output\acknowledgments.txt
cp $base_dir\CommonAssemblyInfo.cs $build_dir\Output\CommonAssemblyInfo.cs
}
task ZipOutput {
if($env:buildlabel -eq 13)
{
return
}
$old = pwd
cd $build_dir\Output
$file = "$release_dir\$global:uploadCategory-Build-$env:buildlabel.zip"
exec {
& $tools_dir\zip.exe -9 -A -r `
$file `
EmbeddedClient\*.* `
Client\*.* `
Samples\*.* `
Smuggler\*.* `
Backup\*.* `
Web\*.* `
Bundles\*.* `
Web\bin\*.* `
Server\*.* `
*.*
}
cd $old
}
task ResetBuildArtifcats {
git checkout "Raven.Database\RavenDB.snk"
}
task DoRelease -depends Compile, `
CleanOutputDirectory, `
CreateOutpuDirectories, `
CopyEmbeddedClient, `
CopySmuggler, `
CopyBackup, `
CopyClient, `
CopySilverlight, `
CopyWeb, `
CopyBundles, `
CopyServer, `
CopyRootFiles, `
CopySamples, `
ZipOutput, `
CopyInstaller, `
SignInstaller, `
CreateNugetPackages, `
PublishSymbolSources, `
ResetBuildArtifcats {
Write-Host "Done building RavenDB"
}
task Upload -depends DoRelease {
Write-Host "Starting upload"
if (Test-Path $uploader) {
$log = $env:push_msg
if(($log -eq $null) -or ($log.Length -eq 0)) {
$log = git log -n 1 --oneline
}
$log = $log.Replace('"','''') # avoid problems because of " escaping the output
$zipFile = "$release_dir\$global:uploadCategory-Build-$env:buildlabel.zip"
$installerFile = "$release_dir\$global:uploadCategory-Build-$env:buildlabel.Setup.exe"
$files = @(@($installerFile, $uploadCategory.Replace("RavenDB", "RavenDB Installer")) , @($zipFile, "$uploadCategory"))
foreach ($obj in $files)
{
$file = $obj[0]
$currentUploadCategory = $obj[1]
write-host "Executing: $uploader ""$currentUploadCategory"" ""$env:buildlabel"" $file ""$log"""
$uploadTryCount = 0
while ($uploadTryCount -lt 5){
$uploadTryCount += 1
Exec { &$uploader "$currentUploadCategory" "$env:buildlabel" $file "$log" }
if ($lastExitCode -ne 0) {
write-host "Failed to upload to S3: $lastExitCode. UploadTryCount: $uploadTryCount"
}
else {
break
}
}
if ($lastExitCode -ne 0) {
write-host "Failed to upload to S3: $lastExitCode. UploadTryCount: $uploadTryCount. Build will fail."
throw "Error: Failed to publish build"
}
}
}
else {
Write-Host "could not find upload script $uploadScript, skipping upload"
}
}
task UploadStable -depends Stable, DoRelease, Upload
task UploadUnstable -depends Unstable, DoRelease, Upload
task UploadVnext3 -depends Vnext3, DoRelease, Upload
task CreateNugetPackages -depends Compile {
Remove-Item $base_dir\RavenDB*.nupkg
$nuget_dir = "$build_dir\NuGet"
Remove-Item $nuget_dir -Force -Recurse -ErrorAction SilentlyContinue
New-Item $nuget_dir -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Client\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Client\lib\net45 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Client\lib\sl50 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Client.nuspec $nuget_dir\RavenDB.Client\RavenDB.Client.nuspec
@("Raven.Abstractions.???", "Raven.Client.Lightweight.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Client\lib\net40 }
@("Raven.Abstractions.???", "Raven.Client.Lightweight.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Client\lib\net45 }
@("Raven.Client.Silverlight.???", "AsyncCtpLibrary_Silverlight5.???") |% { Copy-Item "$build_dir\sl5\$_" $nuget_dir\RavenDB.Client\lib\sl50 }
New-Item $nuget_dir\RavenDB.Client.MvcIntegration\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Client.MvcIntegration\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Client.MvcIntegration.nuspec $nuget_dir\RavenDB.Client.MvcIntegration\RavenDB.Client.MvcIntegration.nuspec
@("Raven.Client.MvcIntegration.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Client.MvcIntegration\lib\net40 }
@("Raven.Client.MvcIntegration.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Client.MvcIntegration\lib\net45 }
New-Item $nuget_dir\RavenDB.Database\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Database\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Database.nuspec $nuget_dir\RavenDB.Database\RavenDB.Database.nuspec
@("Raven.Abstractions.???", "Raven.Database.???", "BouncyCastle.Crypto.???",
"Esent.Interop.???", "ICSharpCode.NRefactory.???", "ICSharpCode.NRefactory.CSharp.???", "Mono.Cecil.???", "Lucene.Net.???", "Lucene.Net.Contrib.Spatial.NTS.???",
"Jint.Raven.???", "Spatial4n.Core.NTS.???", "GeoAPI.dll", "NetTopologySuite.dll", "PowerCollections.dll", "AWS.Extensions.???", "AWSSDK.???") `
|% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Database\lib\net40 }
@("Raven.Abstractions.???", "Raven.Database.???", "BouncyCastle.Crypto.???",
"Esent.Interop.???", "ICSharpCode.NRefactory.???", "ICSharpCode.NRefactory.CSharp.???", "Mono.Cecil.???", "Lucene.Net.???", "Lucene.Net.Contrib.Spatial.NTS.???",
"Jint.Raven.???", "Spatial4n.Core.NTS.???", "GeoAPI.dll", "NetTopologySuite.dll", "PowerCollections.dll", "AWS.Extensions.???", "AWSSDK.???") `
|% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Database\lib\net45 }
New-Item $nuget_dir\RavenDB.Server -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Server.nuspec $nuget_dir\RavenDB.Server\RavenDB.Server.nuspec
New-Item $nuget_dir\RavenDB.Server\tools -Type directory | Out-Null
@("Esent.Interop.???", "ICSharpCode.NRefactory.???", "ICSharpCode.NRefactory.CSharp.???", "Mono.Cecil.???", "Lucene.Net.???", "Lucene.Net.Contrib.Spatial.NTS.???",
"Spatial4n.Core.NTS.???", "GeoAPI.dll", "NetTopologySuite.dll", "PowerCollections.dll", "NewtonSoft.Json.???", "NLog.???", "Jint.Raven.???",
"Raven.Abstractions.???", "Raven.Database.???", "Raven.Server.???", "Raven.Smuggler.???", "AWS.Extensions.???", "AWSSDK.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Server\tools }
Copy-Item (Get-DependencyPackageFiles 'Microsoft.CompilerServices.AsyncTargetingPack' -FrameworkVersion net40) $nuget_dir\RavenDB.Server\tools
Copy-Item $base_dir\DefaultConfigs\RavenDb.exe.config $nuget_dir\RavenDB.Server\tools\Raven.Server.exe.config
New-Item $nuget_dir\RavenDB.Embedded\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Embedded\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Embedded.nuspec $nuget_dir\RavenDB.Embedded\RavenDB.Embedded.nuspec
@("Raven.Client.Embedded.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Embedded\lib\net40 }
@("Raven.Client.Embedded.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Embedded\lib\net45 }
# Client packages
@("Authorization", "UniqueConstraints") | Foreach-Object {
$name = $_;
New-Item $nuget_dir\RavenDB.Client.$name\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Client.$name\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Client.$name.nuspec $nuget_dir\RavenDB.Client.$name\RavenDB.Client.$name.nuspec
@("Raven.Client.$_.???") |% { Copy-Item $build_dir\$_ $nuget_dir\RavenDB.Client.$name\lib\net40 }
@("Raven.Client.$_.???") |% { Copy-Item $build_dir\net45\$_ $nuget_dir\RavenDB.Client.$name\lib\net45 }
}
New-Item $nuget_dir\RavenDB.Bundles.Authorization\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Bundles.Authorization\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Bundles.Authorization.nuspec $nuget_dir\RavenDB.Bundles.Authorization\RavenDB.Bundles.Authorization.nuspec
@("Raven.Bundles.Authorization.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Bundles.Authorization\lib\net40 }
@("Raven.Bundles.Authorization.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Bundles.Authorization\lib\net45 }
New-Item $nuget_dir\RavenDB.Bundles.CascadeDelete\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Bundles.CascadeDelete\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Bundles.CascadeDelete.nuspec $nuget_dir\RavenDB.Bundles.CascadeDelete\RavenDB.Bundles.CascadeDelete.nuspec
@("Raven.Bundles.CascadeDelete.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Bundles.CascadeDelete\lib\net40 }
@("Raven.Bundles.CascadeDelete.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Bundles.CascadeDelete\lib\net45 }
New-Item $nuget_dir\RavenDB.Bundles.IndexReplication\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Bundles.IndexReplication\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Bundles.IndexReplication.nuspec $nuget_dir\RavenDB.Bundles.IndexReplication\RavenDB.Bundles.IndexReplication.nuspec
@("Raven.Bundles.IndexReplication.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Bundles.IndexReplication\lib\net40 }
@("Raven.Bundles.IndexReplication.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Bundles.IndexReplication\lib\net45 }
New-Item $nuget_dir\RavenDB.Bundles.UniqueConstraints\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Bundles.UniqueConstraints\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Bundles.UniqueConstraints.nuspec $nuget_dir\RavenDB.Bundles.UniqueConstraints\RavenDB.Bundles.UniqueConstraints.nuspec
@("Raven.Bundles.UniqueConstraints.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Bundles.UniqueConstraints\lib\net40 }
@("Raven.Bundles.UniqueConstraints.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Bundles.UniqueConstraints\lib\net45 }
New-Item $nuget_dir\RavenDB.AspNetHost\content -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.AspNetHost\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.AspNetHost\lib\net45 -Type directory | Out-Null
@("Raven.Web.???") |% { Copy-Item "$build_dir\web\$_" $nuget_dir\RavenDB.AspNetHost\lib\net40 }
@("Raven.Web.???") |% { Copy-Item "$build_dir\web\net45\$_" $nuget_dir\RavenDB.AspNetHost\lib\net45 }
Copy-Item $base_dir\NuGet\RavenDB.AspNetHost.nuspec $nuget_dir\RavenDB.AspNetHost\RavenDB.AspNetHost.nuspec
Copy-Item $base_dir\DefaultConfigs\NuGet.AspNetHost.Web.config $nuget_dir\RavenDB.AspNetHost\content\Web.config.transform
New-Item $nuget_dir\RavenDB.Tests.Helpers\lib\net40 -Type directory | Out-Null
New-Item $nuget_dir\RavenDB.Tests.Helpers\lib\net45 -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenDB.Tests.Helpers.nuspec $nuget_dir\RavenDB.Tests.Helpers\RavenDB.Tests.Helpers.nuspec
@("Raven.Tests.Helpers.???", "Raven.Server.???") |% { Copy-Item "$build_dir\$_" $nuget_dir\RavenDB.Tests.Helpers\lib\net40 }
@("Raven.Tests.Helpers.???", "Raven.Server.???") |% { Copy-Item "$build_dir\net45\$_" $nuget_dir\RavenDB.Tests.Helpers\lib\net45 }
New-Item $nuget_dir\RavenDB.Tests.Helpers\content -Type directory | Out-Null
Copy-Item $base_dir\NuGet\RavenTests $nuget_dir\RavenDB.Tests.Helpers\content\RavenTests -Recurse
$global:nugetVersion = "$version.$env:buildlabel"
if ($global:uploadCategory -and $global:uploadCategory.EndsWith("-Unstable")){
$global:nugetVersion += "-Unstable"
}
# Sets the package version in all the nuspec as well as any RavenDB package dependency versions
$packages = Get-ChildItem $nuget_dir *.nuspec -recurse
$packages |% {
$nuspec = [xml](Get-Content $_.FullName)
$nuspec.package.metadata.version = $global:nugetVersion
$nuspec | Select-Xml '//dependency' |% {
if($_.Node.Id.StartsWith('RavenDB')){
$_.Node.Version = "[$global:nugetVersion]"
}
}
$nuspec.Save($_.FullName);
Exec { &"$base_dir\.nuget\nuget.exe" pack $_.FullName }
}
# Upload packages
$accessPath = "$base_dir\..\Nuget-Access-Key.txt"
$sourceFeed = "https://nuget.org/"
if ($global:uploadMode -eq "Vnext3") {
$accessPath = "$base_dir\..\MyGet-Access-Key.txt"
$sourceFeed = "http://www.myget.org/F/ravendb3/api/v2/package"
}
if ( (Test-Path $accessPath) ) {
$accessKey = Get-Content $accessPath
$accessKey = $accessKey.Trim()
# Push to nuget repository
$packages | ForEach-Object {
Exec { &"$base_dir\.nuget\NuGet.exe" push "$($_.BaseName).$global:nugetVersion.nupkg" $accessKey -Source $sourceFeed }
}
}
else {
Write-Host "$accessPath does not exit. Cannot publish the nuget package." -ForegroundColor Yellow
}
}
task PublishSymbolSources -depends CreateNugetPackages {
$nuget_dir = "$build_dir\NuGet"
$packages = Get-ChildItem $nuget_dir *.nuspec -recurse
# Package the symbols package
$packages | ForEach-Object {
$dirName = [io.path]::GetFileNameWithoutExtension($_)
Remove-Item $nuget_dir\$dirName\src -Force -Recurse -ErrorAction SilentlyContinue
New-Item $nuget_dir\$dirName\src -Type directory | Out-Null
$srcDirName1 = $dirName
$srcDirName1 = $srcDirName1.Replace("RavenDB.", "Raven.")
$srcDirName1 = $srcDirName1.Replace(".AspNetHost", ".Web")
$srcDirName1 = $srcDirName1 -replace "Raven.Client$", "Raven.Client.Lightweight"
$srcDirName1 = $srcDirName1.Replace("Raven.Bundles.", "Bundles\Raven.Bundles.")
$srcDirName1 = $srcDirName1.Replace("Raven.Client.Authorization", "Bundles\Raven.Client.Authorization")
$srcDirName1 = $srcDirName1.Replace("Raven.Client.UniqueConstraints", "Bundles\Raven.Client.UniqueConstraints")
$srcDirName1 = $srcDirName1.Replace("Raven.Embedded", "Raven.Client.Embedded")
$srcDirNames = @($srcDirName1)
if ($dirName -eq "RavenDB.Client") {
$srcDirNames += @("Raven.Client.Silverlight")
}
elseif ($dirName -eq "RavenDB.Server") {
$srcDirNames += @("Raven.Smuggler")
}
foreach ($srcDirName in $srcDirNames) {
Write-Host $srcDirName
$csprojFile = $srcDirName -replace ".*\\", ""
$csprojFile += ".csproj"
Get-ChildItem $srcDirName\*.cs -Recurse | ForEach-Object {
$indexOf = $_.FullName.IndexOf($srcDirName)
$copyTo = $_.FullName.Substring($indexOf + $srcDirName.Length + 1)
$copyTo = "$nuget_dir\$dirName\src\$copyTo"
New-Item -ItemType File -Path $copyTo -Force | Out-Null
Copy-Item $_.FullName $copyTo -Recurse -Force
}
Write-Host .csprojFile $csprojFile -Fore Yellow
Write-Host Copy Linked Files of $srcDirName -Fore Yellow
[xml]$csProj = Get-Content $srcDirName\$csprojFile
Write-Host $srcDirName\$csprojFile -Fore Green
foreach ($compile in $csProj.Project.ItemGroup.Compile){
if ($compile.Link.Length -gt 0) {
$fileToCopy = $compile.Include
$copyToPath = $fileToCopy -replace "(\.\.\\)*", ""
Write-Host "Copy $srcDirName\$fileToCopy" -ForegroundColor Magenta
Write-Host "To $nuget_dir\$dirName\src\$copyToPath" -ForegroundColor Magenta
if ($fileToCopy.EndsWith("\*.cs")) {
#Get-ChildItem "$srcDirName\$fileToCopy" | ForEach-Object {
# Copy-Item $_.FullName "$nuget_dir\$dirName\src\$copyToPath".Replace("\*.cs", "\") -Recurse -Force
#}
} else {
New-Item -ItemType File -Path "$nuget_dir\$dirName\src\$copyToPath" -Force | Out-Null
Copy-Item "$srcDirName\$fileToCopy" "$nuget_dir\$dirName\src\$copyToPath" -Recurse -Force
}
}
}
foreach ($projectReference in $csProj.Project.ItemGroup.ProjectReference){
Write-Host "Visiting project $($projectReference.Include) of $dirName" -Fore Green
if ($projectReference.Include.Length -gt 0) {
$projectPath = $projectReference.Include
Write-Host "Include also linked files of $($projectReference.Include)" -Fore Green
$srcDirName2 = [io.path]::GetFileNameWithoutExtension($projectPath)
Get-ChildItem $srcDirName2\*.cs -Recurse | ForEach-Object {
$indexOf = $_.FullName.IndexOf($srcDirName2)
$copyTo = $_.FullName.Substring($indexOf + $srcDirName2.Length + 1)
$copyTo = "$nuget_dir\$dirName\src\$copyTo"
New-Item -ItemType File -Path $copyTo -Force | Out-Null
Copy-Item $_.FullName $copyTo -Recurse -Force
}
[xml]$global:csProj2;
try {
[xml]$global:csProj2 = Get-Content "$srcDirName2\$projectPath"
} catch {
$projectPath = $projectPath.Replace("..\..\", "..\")
Write-Host "Try to include also linked files of $($projectReference.Include)" -Fore Green
[xml]$global:csProj2 = Get-Content "$srcDirName2\$projectPath"
}
foreach ($compile in $global:csProj2.Project.ItemGroup.Compile){
if ($compile.Link.Length -gt 0) {
$fileToCopy = ""
if ($srcDirName2.Contains("Bundles\") -and !$srcDirName2.EndsWith("\..")) {
$srcDirName2 += "\.."
}
$fileToCopy = $compile.Include;
$copyToPath = $fileToCopy -replace "(\.\.\\)*", ""
if ($global:isDebugEnabled) {
Write-Host "Copy $srcDirName2\$fileToCopy" -ForegroundColor Magenta
Write-Host "To $nuget_dir\$dirName\src\$copyToPath" -ForegroundColor Magenta
}
New-Item -ItemType File -Path "$nuget_dir\$dirName\src\$copyToPath" -Force | Out-Null
Copy-Item "$srcDirName2\$fileToCopy" "$nuget_dir\$dirName\src\$copyToPath" -Recurse -Force
}
}
}
}
}
Get-ChildItem "$nuget_dir\$dirName\*.dll" -recurse -exclude Raven* | ForEach-Object {
Remove-Item $_ -force -recurse -ErrorAction SilentlyContinue
}
Get-ChildItem "$nuget_dir\$dirName\*.pdb" -recurse -exclude Raven* | ForEach-Object {
Remove-Item $_ -force -recurse -ErrorAction SilentlyContinue
}
Get-ChildItem "$nuget_dir\$dirName\*.xml" -recurse | ForEach-Object {
Remove-Item $_ -force -recurse -ErrorAction SilentlyContinue
}
Remove-Item "$nuget_dir\$dirName\src\bin" -force -recurse -ErrorAction SilentlyContinue
Remove-Item "$nuget_dir\$dirName\src\obj" -force -recurse -ErrorAction SilentlyContinue
Exec { &"$base_dir\.nuget\nuget.exe" pack $_.FullName -Symbols }
}
# Upload packages
$accessPath = "$base_dir\..\Nuget-Access-Key.txt"
$sourceFeed = "https://nuget.org/"
if ($global:uploadMode -eq "Vnext3") {
$accessPath = "$base_dir\..\MyGet-Access-Key.txt"
$sourceFeed = "http://www.myget.org/F/ravendb3/api/v2/package"
}
if ( (Test-Path $accessPath) ) {
$accessKey = Get-Content $accessPath
$accessKey = $accessKey.Trim()
$packages | ForEach-Object {
try {
Write-Host "Publish symbol package $($_.BaseName).$global:nugetVersion.symbols.nupkg"
&"$base_dir\.nuget\NuGet.exe" push "$($_.BaseName).$global:nugetVersion.symbols.nupkg" $accessKey -Source http://nuget.gw.symbolsource.org/Public/NuGet -Timeout 4800
} catch {
Write-Host $error[0]
$LastExitCode = 0
}
}
}
else {
Write-Host "$accessPath does not exit. Cannot publish the nuget package." -ForegroundColor Yellow
}
}
TaskTearDown {
if ($LastExitCode -ne 0) {
write-host "TaskTearDown detected an error. Build failed." -BackgroundColor Red -ForegroundColor Yellow
write-host "Yes, something was failed!!!!!!!!!!!!!!!!!!!!!" -BackgroundColor Red -ForegroundColor Yellow
# throw "TaskTearDown detected an error. Build failed."
exit 1
}
}