forked from OmniSharp/omnisharp-roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
843 lines (709 loc) · 27 KB
/
build.cake
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
#addin "Newtonsoft.Json"
#load "scripts/common.cake"
#load "scripts/runhelpers.cake"
#load "scripts/archiving.cake"
#load "scripts/artifacts.cake"
using System.ComponentModel;
using System.Net;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
// Arguments
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var testConfiguration = Argument("test-configuration", "Debug");
var installFolder = Argument("install-path",
CombinePaths(Environment.GetEnvironmentVariable(IsRunningOnWindows() ? "USERPROFILE" : "HOME"), ".omnisharp", "local"));
var requireArchive = HasArgument("archive");
var useGlobalDotNetSdk = HasArgument("use-global-dotnet-sdk");
var env = new BuildEnvironment(IsRunningOnWindows(), useGlobalDotNetSdk);
/// <summary>
/// Class representing build.json
/// </summary>
public class BuildPlan
{
public string DotNetInstallScriptURL { get; set; }
public string DotNetChannel { get; set; }
public string DotNetVersion { get; set; }
public string LegacyDotNetVersion { get; set; }
public string DownloadURL { get; set; }
public string MSBuildRuntimeForMono { get; set; }
public string MSBuildLibForMono { get; set; }
public string[] Frameworks { get; set; }
public string MainProject { get; set; }
public string[] TestProjects { get; set; }
public string[] TestAssets { get; set; }
public string[] LegacyTestAssets { get; set; }
private string currentRid;
private string[] targetRids;
public void SetCurrentRid(string currentRid)
{
this.currentRid = currentRid;
}
public string CurrentRid => currentRid;
public string[] TargetRids => targetRids;
public void SetTargetRids(params string[] targetRids)
{
this.targetRids = targetRids;
}
public string GetDefaultRid()
{
if (currentRid.StartsWith("win"))
{
return currentRid.EndsWith("-x86")
? "win7-x86"
: "win7-x64";
}
return currentRid;
}
public static BuildPlan Load(BuildEnvironment env)
{
var buildJsonPath = PathHelper.Combine(env.WorkingDirectory, "build.json");
return JsonConvert.DeserializeObject<BuildPlan>(
System.IO.File.ReadAllText(buildJsonPath));
}
}
var buildPlan = BuildPlan.Load(env);
// Folders and tools
var msbuildBaseFolder = CombinePaths(env.WorkingDirectory, ".msbuild");
var msbuildNet46Folder = msbuildBaseFolder + "-net46";
var msbuildNetCoreAppFolder = msbuildBaseFolder + "-netcoreapp1.1";
var msbuildRuntimeForMonoInstallFolder = CombinePaths(env.Folders.Tools, "Microsoft.Build.Runtime.Mono");
var msbuildLibForMonoInstallFolder = CombinePaths(env.Folders.Tools, "Microsoft.Build.Lib.Mono");
/// <summary>
/// Clean artifacts.
/// </summary>
Task("Cleanup")
.Does(() =>
{
if (DirectoryExists(env.Folders.Artifacts))
{
DeleteDirectory(env.Folders.Artifacts, recursive: true);
}
CreateDirectory(env.Folders.Artifacts);
CreateDirectory(env.Folders.ArtifactsLogs);
CreateDirectory(env.Folders.ArtifactsPackage);
CreateDirectory(env.Folders.ArtifactsScripts);
});
/// <summary>
/// Pre-build setup tasks.
/// </summary>
Task("Setup")
.IsDependentOn("BuildEnvironment")
.IsDependentOn("PopulateRuntimes")
.IsDependentOn("SetupMSBuild")
.Does(() =>
{
});
/// <summary>
/// Acquire additional NuGet packages included with OmniSharp (such as MSBuild).
/// </summary>
Task("SetupMSBuild")
.IsDependentOn("BuildEnvironment")
.Does(() =>
{
if (!IsRunningOnWindows())
{
if (DirectoryExists(msbuildRuntimeForMonoInstallFolder))
{
DeleteDirectory(msbuildRuntimeForMonoInstallFolder, recursive: true);
}
if (DirectoryExists(msbuildLibForMonoInstallFolder))
{
DeleteDirectory(msbuildLibForMonoInstallFolder, recursive: true);
}
CreateDirectory(msbuildRuntimeForMonoInstallFolder);
CreateDirectory(msbuildLibForMonoInstallFolder);
var msbuildMonoRuntimeZip = CombinePaths(msbuildRuntimeForMonoInstallFolder, buildPlan.MSBuildRuntimeForMono);
var msbuildMonoLibZip = CombinePaths(msbuildLibForMonoInstallFolder, buildPlan.MSBuildLibForMono);
using (var client = new WebClient())
{
client.DownloadFile($"{buildPlan.DownloadURL}/{buildPlan.MSBuildRuntimeForMono}", msbuildMonoRuntimeZip);
client.DownloadFile($"{buildPlan.DownloadURL}/{buildPlan.MSBuildLibForMono}", msbuildMonoLibZip);
}
Unzip(msbuildMonoRuntimeZip, msbuildRuntimeForMonoInstallFolder);
Unzip(msbuildMonoLibZip, msbuildLibForMonoInstallFolder);
DeleteFile(msbuildMonoRuntimeZip);
DeleteFile(msbuildMonoLibZip);
}
if (DirectoryExists(msbuildNet46Folder))
{
DeleteDirectory(msbuildNet46Folder, recursive: true);
}
if (DirectoryExists(msbuildNetCoreAppFolder))
{
DeleteDirectory(msbuildNetCoreAppFolder, recursive: true);
}
CreateDirectory(msbuildNet46Folder);
CreateDirectory(msbuildNetCoreAppFolder);
// Copy MSBuild runtime to appropriate locations
var msbuildInstallFolder = CombinePaths(env.Folders.Tools, "Microsoft.Build.Runtime", "contentFiles", "any");
var msbuildNet46InstallFolder = CombinePaths(msbuildInstallFolder, "net46");
var msbuildNetCoreAppInstallFolder = CombinePaths(msbuildInstallFolder, "netcoreapp1.0");
if (IsRunningOnWindows())
{
CopyDirectory(msbuildNet46InstallFolder, msbuildNet46Folder);
}
else
{
CopyDirectory(msbuildRuntimeForMonoInstallFolder, msbuildNet46Folder);
}
CopyDirectory(msbuildNetCoreAppInstallFolder, msbuildNetCoreAppFolder);
var sdks = new []
{
"Microsoft.NET.Sdk",
"Microsoft.NET.Sdk.Publish",
"Microsoft.NET.Sdk.Web",
"Microsoft.NET.Sdk.Web.ProjectSystem",
"NuGet.Build.Tasks.Pack"
};
var net46SdkFolder = CombinePaths(msbuildNet46Folder, "Sdks");
var netCoreAppSdkFolder = CombinePaths(msbuildNetCoreAppFolder, "Sdks");
foreach (var sdk in sdks)
{
var sdkInstallFolder = CombinePaths(env.Folders.Tools, sdk);
var net46SdkTargetFolder = CombinePaths(net46SdkFolder, sdk);
var netCoreAppSdkTargetFolder = CombinePaths(netCoreAppSdkFolder, sdk);
CopyDirectory(sdkInstallFolder, net46SdkTargetFolder);
CopyDirectory(sdkInstallFolder, netCoreAppSdkTargetFolder);
// Ensure that we don't leave the .nupkg unnecessarily hanging around.
DeleteFiles(CombinePaths(net46SdkTargetFolder, "*.nupkg"));
DeleteFiles(CombinePaths(netCoreAppSdkTargetFolder, "*.nupkg"));
}
// Copy NuGet ImportAfter targets
var nugetImportAfterTargetsName = "Microsoft.NuGet.ImportAfter.targets";
var nugetImportAfterTargetsFolder = CombinePaths("15.0", "Microsoft.Common.targets", "ImportAfter");
var nugetImportAfterTargetsPath = CombinePaths(nugetImportAfterTargetsFolder, nugetImportAfterTargetsName);
CreateDirectory(CombinePaths(msbuildNet46Folder, nugetImportAfterTargetsFolder));
CreateDirectory(CombinePaths(msbuildNetCoreAppFolder, nugetImportAfterTargetsFolder));
CopyFile(CombinePaths(env.Folders.MSBuild, nugetImportAfterTargetsPath), CombinePaths(msbuildNet46Folder, nugetImportAfterTargetsPath));
CopyFile(CombinePaths(env.Folders.MSBuild, nugetImportAfterTargetsPath), CombinePaths(msbuildNetCoreAppFolder, nugetImportAfterTargetsPath));
nugetImportAfterTargetsFolder = CombinePaths("15.0", "SolutionFile", "ImportAfter");
nugetImportAfterTargetsPath = CombinePaths(nugetImportAfterTargetsFolder, nugetImportAfterTargetsName);
CreateDirectory(CombinePaths(msbuildNet46Folder, nugetImportAfterTargetsFolder));
CreateDirectory(CombinePaths(msbuildNetCoreAppFolder, nugetImportAfterTargetsFolder));
CopyFile(CombinePaths(env.Folders.MSBuild, nugetImportAfterTargetsPath), CombinePaths(msbuildNet46Folder, nugetImportAfterTargetsPath));
CopyFile(CombinePaths(env.Folders.MSBuild, nugetImportAfterTargetsPath), CombinePaths(msbuildNetCoreAppFolder, nugetImportAfterTargetsPath));
// Copy NuGet.targets from NuGet.Build.Tasks
var nugetTargetsName = "NuGet.targets";
var nugetTargetsPath = CombinePaths(env.Folders.Tools, "NuGet.Build.Tasks", "runtimes", "any", "native", nugetTargetsName);
CopyFile(nugetTargetsPath, CombinePaths(msbuildNet46Folder, nugetTargetsName));
CopyFile(nugetTargetsPath, CombinePaths(msbuildNetCoreAppFolder, nugetTargetsName));
// Finally, copy Microsoft.CSharp.Core.targets from Microsoft.Net.Compilers
var csharpTargetsName = "Microsoft.CSharp.Core.targets";
var csharpTargetsPath = CombinePaths(env.Folders.Tools, "Microsoft.Net.Compilers", "tools", csharpTargetsName);
var csharpTargetsNet46Folder = CombinePaths(msbuildNet46Folder, "Roslyn");
var csharpTargetsNetCoreAppFolder = CombinePaths(msbuildNetCoreAppFolder, "Roslyn");
CreateDirectory(csharpTargetsNet46Folder);
CreateDirectory(csharpTargetsNetCoreAppFolder);
CopyFile(csharpTargetsPath, CombinePaths(csharpTargetsNet46Folder, csharpTargetsName));
CopyFile(csharpTargetsPath, CombinePaths(csharpTargetsNetCoreAppFolder,csharpTargetsName));
});
/// <summary>
/// Populate the RIDs for the specific environment.
/// Use default RID (+ win7-x86 on Windows) for now.
/// </summary>
Task("PopulateRuntimes")
.IsDependentOn("BuildEnvironment")
.Does(() =>
{
if (IsRunningOnWindows() && string.Equals(Environment.GetEnvironmentVariable("APPVEYOR"), "True"))
{
buildPlan.SetTargetRids(
"default", // To allow testing the published artifact
"win7-x86",
"win7-x64");
}
else if (string.Equals(Environment.GetEnvironmentVariable("TRAVIS_OS_NAME"), "linux"))
{
buildPlan.SetTargetRids(
"default", // To allow testing the published artifact
"ubuntu.14.04-x64",
"ubuntu.16.04-x64",
"centos.7-x64",
"rhel.7.2-x64",
"debian.8-x64",
"fedora.23-x64",
"opensuse.13.2-x64");
}
else
{
// In this case, the build is not happening in CI, so just use the default RID.
buildPlan.SetTargetRids("default");
}
});
void ParseDotNetInfoValues(IEnumerable<string> lines, out string version, out string rid, out string basePath)
{
var keyValueMap = new Dictionary<string, string>();
foreach (var line in lines)
{
var index = line.IndexOf(":");
if (index >= 0)
{
var key = line.Substring(0, index).Trim();
var value = line.Substring(index + 1).Trim();
if (!string.IsNullOrEmpty(key) &&
!string.IsNullOrEmpty(value))
{
keyValueMap.Add(key, value);
}
}
}
if (!keyValueMap.TryGetValue("Version", out version))
{
throw new Exception("Could not locate Version in 'dotnet --info' output.");
}
if (!keyValueMap.TryGetValue("RID", out rid))
{
throw new Exception("Could not locate RID in 'dotnet --info' output.");
}
if (!keyValueMap.TryGetValue("Base Path", out basePath))
{
throw new Exception("Could not locate Base Path in 'dotnet --info' output.");
}
}
void InstallDotNetSdk(BuildEnvironment env, BuildPlan plan, string version, string installFolder)
{
if (!DirectoryExists(installFolder))
{
CreateDirectory(installFolder);
}
var scriptFileName = $"dotnet-install.{env.ShellScriptFileExtension}";
var scriptFilePath = CombinePaths(installFolder, scriptFileName);
var url = $"{plan.DotNetInstallScriptURL}/{scriptFileName}";
using (var client = new WebClient())
{
client.DownloadFile(url, scriptFilePath);
}
if (!IsRunningOnWindows())
{
Run("chmod", $"+x '{scriptFilePath}'");
}
var argList = new List<string>();
argList.Add("-Channel");
argList.Add(plan.DotNetChannel);
if (!string.IsNullOrEmpty(version))
{
argList.Add("-Version");
argList.Add(version);
}
argList.Add("-InstallDir");
argList.Add(installFolder);
Run(env.ShellCommand, $"{env.ShellArgument} {scriptFilePath} {string.Join(" ", argList)}");
}
/// <summary>
/// Install/update build environment.
/// </summary>
Task("BuildEnvironment")
.Does(() =>
{
if (!useGlobalDotNetSdk)
{
InstallDotNetSdk(env, buildPlan,
version: buildPlan.DotNetVersion,
installFolder: env.Folders.DotNetSdk);
}
// Install legacy .NET Core SDK (used to 'dotnet restore' project.json test projects)
InstallDotNetSdk(env, buildPlan,
version: buildPlan.LegacyDotNetVersion,
installFolder: env.Folders.LegacyDotNetSdk);
// Capture 'dotnet --info' output and parse out RID.
var lines = new List<string>();
try
{
Run(env.DotNetCommand, "--info", new RunOptions(output: lines));
}
catch (Win32Exception)
{
throw new Exception("Failed to run 'dotnet --info'");
}
string version, rid, basePath;
ParseDotNetInfoValues(lines, out version, out rid, out basePath);
if (rid == "osx.10.12-x64")
{
rid = "osx.10.11-x64";
Environment.SetEnvironmentVariable("DOTNET_RUNTIME_ID", rid);
}
buildPlan.SetCurrentRid(rid);
Information("Using .NET CLI");
Information(" Version: {0}", version);
Information(" RID: {0}", rid);
Information(" Base Path: {0}", basePath);
});
/// <summary>
/// Restore required NuGet packages.
/// </summary>
Task("Restore")
.IsDependentOn("Setup")
.Does(() =>
{
// Restore the projects in OmniSharp.sln
Information("Restoring packages in OmniSharp.sln...");
RunTool(env.DotNetCommand, "restore OmniSharp.sln", env.WorkingDirectory)
.ExceptionOnError("Failed to restore projects in OmniSharp.sln.");
});
/// <summary>
/// Prepare test assets.
/// </summary>
Task("PrepareTestAssets")
.IsDependentOn("Setup")
.Does(() =>
{
// Restore and build test assets
foreach (var project in buildPlan.TestAssets)
{
var folder = CombinePaths(env.Folders.TestAssets, "test-projects", project);
Information($"Restoring packages in {folder}...");
RunTool(env.DotNetCommand, "restore", folder)
.ExceptionOnError($"Failed to restore '{folder}'.");
Information($"Building {folder}...");
RunTool(env.DotNetCommand, "build", folder)
.ExceptionOnError($"Failed to restore '{folder}'.");
}
// Restore and build legacy test assets with legacy .NET Core SDK
foreach (var project in buildPlan.LegacyTestAssets)
{
var folder = CombinePaths(env.Folders.TestAssets, "test-projects", project);
Information($"Restoring project.json packages in {folder}...");
RunTool(env.LegacyDotNetCommand, "restore", folder)
.ExceptionOnError($"Failed to restore '{folder}'.");
Information($"Building {folder}...");
RunTool(env.LegacyDotNetCommand, $"build", folder)
.ExceptionOnError($"Failed to restore '{folder}'.");
}
});
void BuildProject(BuildEnvironment env, string projectName, string projectFilePath, string configuration)
{
var command = IsRunningOnWindows()
? env.DotNetCommand
: env.ShellCommand;
var arguments = IsRunningOnWindows()
? $"build \"{projectFilePath}\" --configuration {configuration} /v:d"
: $"{env.ShellArgument} msbuild.{env.ShellScriptFileExtension} \"{projectFilePath}\" /p:Configuration={configuration} /v:d";
var logFileName = CombinePaths(env.Folders.ArtifactsLogs, $"{projectName}-build.log");
Information($"Building {projectName}...");
RunTool(command, arguments, env.WorkingDirectory, logFileName)
.ExceptionOnError($"Building {projectName} failed.");
}
Task("BuildMain")
.IsDependentOn("Setup")
.IsDependentOn("Restore")
.Does(() =>
{
var projectName = buildPlan.MainProject + ".csproj";
var projectFilePath = CombinePaths(env.Folders.Source, buildPlan.MainProject, projectName);
BuildProject(env, projectName, projectFilePath, configuration);
});
/// <summary>
/// Build Test projects.
/// </summary>
Task("BuildTest")
.IsDependentOn("Setup")
.IsDependentOn("Restore")
.IsDependentOn("BuildMain")
.Does(() =>
{
foreach (var testProject in buildPlan.TestProjects)
{
var testProjectName = testProject + ".csproj";
var testProjectFilePath = CombinePaths(env.Folders.Tests, testProject, testProjectName);
BuildProject(env, testProjectName, testProjectFilePath, testConfiguration);
}
});
/// <summary>
/// Run all tests for .NET Desktop and .NET Core
/// </summary>
Task("TestAll")
.IsDependentOn("Test")
.IsDependentOn("TestCore")
.Does(() =>{});
/// <summary>
/// Run all tests for Travis CI .NET Desktop and .NET Core
/// </summary>
Task("TravisTestAll")
.IsDependentOn("Cleanup")
.IsDependentOn("TestAll")
.Does(() =>{});
/// <summary>
/// Run tests for .NET Core (using .NET CLI).
/// </summary>
Task("TestCore")
.IsDependentOn("Setup")
.IsDependentOn("BuildTest")
.IsDependentOn("PrepareTestAssets")
.Does(() =>
{
foreach (var testProject in buildPlan.TestProjects)
{
var logFile = $"{testProject}-core-result.xml";
var testProjectName = testProject + ".csproj";
var testProjectFileName = CombinePaths(env.Folders.Tests, testProject, testProjectName);
Run(env.DotNetCommand, $"test {testProjectFileName} --framework netcoreapp1.1 --logger \"trx;LogFileName={logFile}\" --no-build -- RunConfiguration.ResultsDirectory=\"{env.Folders.ArtifactsLogs}\"")
.ExceptionOnError($"Test {testProject} failed for .NET Core.");
}
});
/// <summary>
/// Run tests for other frameworks (using XUnit2).
/// </summary>
Task("Test")
.IsDependentOn("Setup")
.IsDependentOn("BuildTest")
.IsDependentOn("PrepareTestAssets")
.Does(() =>
{
foreach (var testProject in buildPlan.TestProjects)
{
PrintBlankLine();
var instanceFolder = CombinePaths(env.Folders.Tests, testProject, "bin", testConfiguration, "net46");
// Copy xunit executable to test folder to solve path errors
var xunitToolsFolder = CombinePaths(env.Folders.Tools, "xunit.runner.console", "tools");
var xunitInstancePath = CombinePaths(instanceFolder, "xunit.console.exe");
System.IO.File.Copy(CombinePaths(xunitToolsFolder, "xunit.console.exe"), xunitInstancePath, true);
System.IO.File.Copy(CombinePaths(xunitToolsFolder, "xunit.runner.utility.net452.dll"), CombinePaths(instanceFolder, "xunit.runner.utility.net452.dll"), true);
var targetPath = CombinePaths(instanceFolder, $"{testProject}.dll");
var logFile = CombinePaths(env.Folders.ArtifactsLogs, $"{testProject}-desktop-result.xml");
var arguments = $"\"{targetPath}\" -parallel none -xml \"{logFile}\" -notrait category=failing";
if (IsRunningOnWindows())
{
Run(xunitInstancePath, arguments, instanceFolder)
.ExceptionOnError($"Test {testProject} failed for net46");
}
else
{
// Copy the Mono-built Microsoft.Build.* binaries to the test folder.
CopyDirectory($"{msbuildLibForMonoInstallFolder}", instanceFolder);
Run("mono", $"\"{xunitInstancePath}\" {arguments}", instanceFolder)
.ExceptionOnError($"Test {testProject} failed for net46");
}
}
});
bool IsNetFrameworkOnUnix(string framework)
{
return !IsRunningOnWindows()
&& !framework.StartsWith("netcore")
&& !framework.StartsWith("netstandard");
}
string GetPublishArguments(string projectFileName, string rid, string framework, string configuration, string outputFolder)
{
var argList = new List<string>();
if (IsNetFrameworkOnUnix(framework))
{
argList.Add($"\"{projectFileName}\"");
argList.Add("/t:Publish");
argList.Add($"/p:RuntimeIdentifier={rid}");
argList.Add($"/p:TargetFramework={framework}");
argList.Add($"/p:Configuration={configuration}");
argList.Add($"/p:PublishDir={outputFolder}");
}
else
{
argList.Add("publish");
argList.Add($"\"{projectFileName}\"");
argList.Add($"--runtime {rid}");
argList.Add($"--framework {framework}");
argList.Add($"--configuration {configuration}");
argList.Add($"--output \"{outputFolder}\"");
}
return string.Join(" ", argList);
}
/// <summary>
/// Build, publish and package artifacts.
/// Targets all RIDs specified in build.json unless restricted by RestrictToLocalRuntime.
/// No dependencies on other tasks to support quick builds.
/// </summary>
Task("OnlyPublish")
.IsDependentOn("Setup")
.Does(() =>
{
var project = buildPlan.MainProject;
var projectName = project + ".csproj";
var projectFileName = CombinePaths(env.Folders.Source, project, projectName);
var completed = new HashSet<string>();
foreach (var runtime in buildPlan.TargetRids)
{
var rid = runtime.Equals("default")
? buildPlan.GetDefaultRid()
: runtime;
if (completed.Contains(rid))
{
continue;
}
// Restore the OmniSharp.csproj with this runtime.
PrintBlankLine();
Information($"Restoring packages in {projectName} for {rid}...");
RunTool(env.DotNetCommand, $"restore \"{projectFileName}\" --runtime {rid}", env.WorkingDirectory)
.ExceptionOnError($"Failed to restore {projectName} for {rid}.");
foreach (var framework in buildPlan.Frameworks)
{
var outputFolder = CombinePaths(env.Folders.ArtifactsPublish, project, runtime, framework);
var command = IsNetFrameworkOnUnix(framework)
? env.ShellCommand
: env.DotNetCommand;
var args = GetPublishArguments(projectFileName, rid, framework, configuration, outputFolder);
args = IsNetFrameworkOnUnix(framework)
? $"{env.ShellArgument} msbuild.{env.ShellScriptFileExtension} {args}"
: args;
Information($"Publishing {projectName} for {framework}/{rid}...");
RunTool(command, args, env.WorkingDirectory)
.ExceptionOnError($"Failed to publish {project} for {framework}/{rid}");
// Copy MSBuild and SDKs to output
CopyDirectory($"{msbuildBaseFolder}-{framework}", CombinePaths(outputFolder, "msbuild"));
// For OSX/Linux net46 builds, copy the MSBuild libraries built for Mono.
if (!IsRunningOnWindows() && framework == "net46")
{
CopyDirectory($"{msbuildLibForMonoInstallFolder}", outputFolder);
}
if (requireArchive)
{
Package(runtime, framework, outputFolder, env.Folders.ArtifactsPackage, buildPlan.MainProject.ToLower());
}
}
completed.Add(rid);
}
CreateRunScript(CombinePaths(env.Folders.ArtifactsPublish, project, "default"), env.Folders.ArtifactsScripts);
});
/// <summary>
/// Alias for OnlyPublish.
/// Targets all RIDs as specified in build.json.
/// </summary>
Task("AllPublish")
.IsDependentOn("Restore")
.IsDependentOn("OnlyPublish")
.Does(() =>
{
});
/// <summary>
/// Restrict the RIDs for the local default.
/// </summary>
Task("RestrictToLocalRuntime")
.IsDependentOn("Setup")
.Does(() =>
{
buildPlan.SetTargetRids("default");
});
/// <summary>
/// Alias for OnlyPublish.
/// Restricts publishing to local RID.
/// </summary>
Task("LocalPublish")
.IsDependentOn("Restore")
.IsDependentOn("RestrictToLocalRuntime")
.IsDependentOn("OnlyPublish")
.Does(() =>
{
});
/// <summary>
/// Test the published binaries if they start up without errors.
/// Uses builds corresponding to local RID.
/// </summary>
Task("TestPublished")
.IsDependentOn("Setup")
.Does(() =>
{
var project = buildPlan.MainProject;
var projectFolder = CombinePaths(env.Folders.Source, project);
var scriptsToTest = new string[] {"OmniSharp", "OmniSharp.Core"};
foreach (var script in scriptsToTest)
{
var scriptPath = CombinePaths(env.Folders.ArtifactsScripts, script);
var didNotExitWithError = Run(env.ShellCommand, $"{env.ShellArgument} \"{scriptPath}\" -s \"{projectFolder}\" --stdio",
new RunOptions(timeOut: 10000))
.DidTimeOut;
if (!didNotExitWithError)
{
throw new Exception($"Failed to run {script}");
}
}
});
/// <summary>
/// Clean install path.
/// </summary>
Task("CleanupInstall")
.Does(() =>
{
if (System.IO.Directory.Exists(installFolder))
{
System.IO.Directory.Delete(installFolder, true);
}
System.IO.Directory.CreateDirectory(installFolder);
});
/// <summary>
/// Quick build.
/// </summary>
Task("Quick")
.IsDependentOn("Cleanup")
.IsDependentOn("LocalPublish")
.Does(() =>
{
});
/// <summary>
/// Quick build + install.
/// </summary>
Task("Install")
.IsDependentOn("Cleanup")
.IsDependentOn("LocalPublish")
.IsDependentOn("CleanupInstall")
.Does(() =>
{
var project = buildPlan.MainProject;
foreach (var framework in buildPlan.Frameworks)
{
var outputFolder = System.IO.Path.GetFullPath(CombinePaths(env.Folders.ArtifactsPublish, project, "default", framework));
var targetFolder = System.IO.Path.GetFullPath(CombinePaths(installFolder, framework));
// Copy all the folders
foreach (var directory in System.IO.Directory.GetDirectories(outputFolder, "*", SearchOption.AllDirectories))
System.IO.Directory.CreateDirectory(CombinePaths(targetFolder, directory.Substring(outputFolder.Length + 1)));
//Copy all the files
foreach (string file in System.IO.Directory.GetFiles(outputFolder, "*", SearchOption.AllDirectories))
System.IO.File.Copy(file, CombinePaths(targetFolder, file.Substring(outputFolder.Length + 1)), true);
}
CreateRunScript(installFolder, env.Folders.ArtifactsScripts);
});
/// <summary>
/// Full build targeting all RIDs specified in build.json.
/// </summary>
Task("All")
.IsDependentOn("Cleanup")
.IsDependentOn("Restore")
.IsDependentOn("TestAll")
.IsDependentOn("AllPublish")
.IsDependentOn("TestPublished")
.Does(() =>
{
});
/// <summary>
/// Full build targeting local RID.
/// </summary>
Task("Local")
.IsDependentOn("Cleanup")
.IsDependentOn("Restore")
.IsDependentOn("TestAll")
.IsDependentOn("LocalPublish")
.IsDependentOn("TestPublished")
.Does(() =>
{
});
/// <summary>
/// Build centered around producing the final artifacts for Travis
///
/// The tests are run as a different task "TestAll"
/// </summary>
Task("Travis")
.IsDependentOn("Cleanup")
.IsDependentOn("Restore")
.IsDependentOn("AllPublish")
.IsDependentOn("TestPublished")
.Does(() =>
{
});
/// <summary>
/// Default Task aliases to Local.
/// </summary>
Task("Default")
.IsDependentOn("Local")
.Does(() =>
{
});
/// <summary>
/// Default to Local.
/// </summary>
RunTarget(target);