-
Notifications
You must be signed in to change notification settings - Fork 420
/
build.cake
790 lines (673 loc) · 27.8 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
#load "scripts/common.cake"
#load "scripts/runhelpers.cake"
#load "scripts/archiving.cake"
#load "scripts/artifacts.cake"
#load "scripts/platform.cake"
#load "scripts/validation.cake"
using System.ComponentModel;
using System.Net;
using System.Reflection;
using System.Xml;
// Arguments
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Debug");
var installFolder = Argument("install-path",
CombinePaths(Environment.GetEnvironmentVariable(Platform.Current.IsWindows ? "USERPROFILE" : "HOME"), ".omnisharp"));
var publishAll = HasArgument("publish-all");
var useGlobalDotNetSdk = HasArgument("use-global-dotnet-sdk");
var testProjectArgument = Argument("test-project", "");
var useDotNetTest = HasArgument("use-dotnet-test");
Log.Context = Context;
var env = new BuildEnvironment(useGlobalDotNetSdk, Context);
var buildPlan = BuildPlan.Load(env);
Information("");
Information("Current platform: {0}", Platform.Current);
Information("");
/// <summary>
/// Clean artifacts.
/// </summary>
Task("Cleanup")
.Does(() =>
{
if (DirectoryHelper.Exists(env.Folders.Artifacts))
{
DirectoryHelper.Delete(env.Folders.Artifacts, recursive: true);
}
DirectoryHelper.Create(env.Folders.Artifacts);
DirectoryHelper.Create(env.Folders.ArtifactsLogs);
DirectoryHelper.Create(env.Folders.ArtifactsPackage);
DirectoryHelper.Create(env.Folders.ArtifactsScripts);
});
Task("GitVersion")
.WithCriteria(!BuildSystem.IsLocalBuild)
.WithCriteria(!AzurePipelines.IsRunningOnAzurePipelines)
.Does(() =>
{
GitVersion(new GitVersionSettings
{
OutputType = GitVersionOutput.BuildServer
});
});
/// <summary>
/// Pre-build setup tasks.
/// </summary>
Task("Setup")
.IsDependentOn("ValidateMono")
.IsDependentOn("InstallDotNetSdk");
void InstallDotNetSdk(BuildEnvironment env, BuildPlan plan, string version, string installFolder, bool sharedRuntime = false, bool noPath = false)
{
if (!DirectoryHelper.Exists(installFolder))
{
DirectoryHelper.Create(installFolder);
}
var scriptFileName = $"dotnet-install.{env.ShellScriptFileExtension}";
var scriptFilePath = CombinePaths(installFolder, scriptFileName);
var url = $"{plan.DotNetInstallScriptURL}/{scriptFileName}";
DownloadFile(url, File(scriptFilePath));
if (!Platform.Current.IsWindows)
{
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);
if (sharedRuntime)
{
argList.Add("-SharedRuntime");
}
if (noPath)
{
argList.Add("-NoPath");
}
Run(env.ShellCommand, $"{env.ShellArgument} {scriptFilePath} {string.Join(" ", argList)}").ExceptionOnError($"Failed to Install .NET Core SDK {version}");
}
Task("InstallDotNetSdk")
.Does(() =>
{
if (!useGlobalDotNetSdk)
{
foreach (var dotnetVersion in buildPlan.DotNetVersions)
{
InstallDotNetSdk(env, buildPlan,
version: dotnetVersion,
installFolder: env.Folders.DotNetSdk);
}
// Add non-legacy .NET SDK to PATH
var oldPath = Environment.GetEnvironmentVariable("PATH");
var newPath = env.Folders.DotNetSdk + (string.IsNullOrEmpty(oldPath) ? "" : System.IO.Path.PathSeparator + oldPath);
Environment.SetEnvironmentVariable("PATH", newPath);
Information("PATH: {0}", Environment.GetEnvironmentVariable("PATH"));
}
// Disable the first time run experience. We don't need to expand all of .NET Core just to build OmniSharp.
Environment.SetEnvironmentVariable("DOTNET_SKIP_FIRST_TIME_EXPERIENCE", "true");
Run(env.DotNetCommand, "--info");
});
Task("ValidateMono")
.WithCriteria(() => !Platform.Current.IsWindows)
.Does(() =>
{
ValidateMonoVersion(buildPlan);
});
/// <summary>
/// Prepare test assets.
/// </summary>
Task("PrepareTestAssets")
.IsDependentOn("Setup");
Task("PrepareTestAssets:CommonTestAssets")
.IsDependeeOf("PrepareTestAssets")
.DoesForEach(buildPlan.TestAssets, (project) =>
{
Information("Restoring and building: {0}...", project);
var folder = CombinePaths(env.Folders.TestAssets, "test-projects", project);
try
{
DotNetBuild(folder, new DotNetBuildSettings()
{
WorkingDirectory = folder,
Verbosity = DotNetVerbosity.Minimal,
});
}
catch when (project == "ExternAlias")
{
// ExternalAlias has issues once in a while, try building again to get it working.
DotNetBuild(folder, new DotNetBuildSettings()
{
WorkingDirectory = folder,
Verbosity = DotNetVerbosity.Minimal
});
}
});
Task("PrepareTestAssets:RestoreOnlyTestAssets")
.IsDependeeOf("PrepareTestAssets")
.DoesForEach(buildPlan.RestoreOnlyTestAssets, (project) =>
{
Information("Restoring: {0}...", project);
var folder = CombinePaths(env.Folders.TestAssets, "test-projects", project);
DotNetRestore(new DotNetRestoreSettings()
{
WorkingDirectory = folder,
Verbosity = DotNetVerbosity.Minimal
});
});
Task("PrepareTestAssets:WindowsOnlyTestAssets")
.WithCriteria(Platform.Current.IsWindows)
.IsDependeeOf("PrepareTestAssets")
.DoesForEach(buildPlan.WindowsOnlyTestAssets, (project) =>
{
Information("Restoring and building: {0}...", project);
var folder = CombinePaths(env.Folders.TestAssets, "test-projects", project);
DotNetBuild(folder, new DotNetBuildSettings()
{
WorkingDirectory = folder,
Verbosity = DotNetVerbosity.Minimal
});
});
Task("PrepareTestAssets:CakeTestAssets")
.IsDependeeOf("PrepareTestAssets")
.DoesForEach(buildPlan.CakeTestAssets, (project) =>
{
Information("Restoring: {0}...", project);
var toolsFolder = CombinePaths(env.Folders.TestAssets, "test-projects", project, "tools");
var packagesConfig = CombinePaths(toolsFolder, "packages.config");
NuGetInstallFromConfig(packagesConfig, new NuGetInstallSettings
{
OutputDirectory = toolsFolder,
Prerelease = true,
Verbosity = NuGetVerbosity.Quiet,
Source = new[] {
"https://api.nuget.org/v3/index.json"
}
});
});
void BuildWithDotNetCli(BuildEnvironment env, string configuration)
{
Information("Building OmniSharp.sln with .NET Core CLI...");
var logFileNameBase = CombinePaths(env.Folders.ArtifactsLogs, "OmniSharp-build");
var projectImports = Context.Log.Verbosity == Verbosity.Verbose || Context.Log.Verbosity == Verbosity.Diagnostic
? MSBuildBinaryLogImports.Embed
: MSBuildBinaryLogImports.None;
var settings = new DotNetMSBuildSettings
{
WorkingDirectory = env.WorkingDirectory,
ArgumentCustomization = args =>
args.Append("/restore")
.Append($"/bl:{logFileNameBase}.binlog;ProjectImports={projectImports}")
.Append($"/v:{Verbosity.Minimal.GetMSBuildVerbosityName()}")
.Append("/tl")
.Append("/graphBuild")
};
settings.AddFileLogger(
new MSBuildFileLoggerSettings
{
AppendToLogFile = false,
LogFile = logFileNameBase + ".log",
ShowTimestamp = true,
// Bug in cake with this
// Verbosity = Verbosity.Diagnostic,
}
);
settings
.SetConfiguration(configuration)
.WithProperty("PackageVersion", env.VersionInfo.NuGetVersion)
.WithProperty("AssemblyVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("FileVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("InformationalVersion", env.VersionInfo.InformationalVersion)
.WithProperty("RuntimeFrameworkVersion", "6.0.0-preview.7.21317.1") // Set the minimum runtime to a .NET 6 prerelease so that prerelease SDKs will be considered during rollForward.
.WithProperty("RollForward", "LatestMajor");
DotNetMSBuild("OmniSharp.sln", settings);
}
Task("Build")
.IsDependentOn("Setup")
.Does(() =>
{
try
{
BuildWithDotNetCli(env, configuration);
}
catch
{
Error($"Build failed.");
throw;
}
});
/// <summary>
/// Run all tests.
/// </summary>
Task("Test")
.IsDependentOn("Setup")
.IsDependentOn("Build")
.IsDependentOn("PrepareTestAssets")
.Does(() =>
{
var testTargetFramework = useDotNetTest ? "net8.0" : "net472";
var testProjects = string.IsNullOrEmpty(testProjectArgument) ? buildPlan.TestProjects : testProjectArgument.Split(',');
foreach (var testProject in testProjects)
{
PrintBlankLine();
var instanceFolder = CombinePaths(env.Folders.Bin, configuration, testProject, testTargetFramework);
var targetPath = CombinePaths(instanceFolder, $"{testProject}.dll");
if (useDotNetTest)
{
var logFile = CombinePaths(env.Folders.ArtifactsLogs, $"{testProject}-netsdk-result.xml");
var arguments = $"test \"{targetPath}\" --logger \"console;verbosity=normal\" --logger \"trx;LogFileName={logFile}\" --blame-hang-timeout 60sec";
Console.WriteLine($"Executing: dotnet {arguments}");
Run("dotnet", arguments, instanceFolder)
.ExceptionOnError($"Test {testProject} failed for {testTargetFramework}");
}
else
{
var logFile = CombinePaths(env.Folders.ArtifactsLogs, $"{testProject}-desktop-result.xml");
// Copy xunit executable to test folder to solve path errors
var xunitToolsFolder = CombinePaths(env.Folders.Tools, "xunit.runner.console", "tools", "net452");
var xunitInstancePath = CombinePaths(instanceFolder, "xunit.console.exe");
FileHelper.Copy(CombinePaths(xunitToolsFolder, "xunit.console.exe"), xunitInstancePath, overwrite: true);
FileHelper.Copy(CombinePaths(xunitToolsFolder, "xunit.runner.utility.net452.dll"), CombinePaths(instanceFolder, "xunit.runner.utility.net452.dll"), overwrite: true);
var arguments = $"\"{targetPath}\" -noshadow -parallel none -xml \"{logFile}\" -notrait category=failing";
if (Platform.Current.IsWindows)
{
Run(xunitInstancePath, arguments, instanceFolder)
.ExceptionOnError($"Test {testProject} failed for {testTargetFramework}");
}
else
{
// Copy the Mono-built Microsoft.Build.* binaries to the test folder.
// This is necessary to work around a Mono bug that is exasperated by xUnit.
CopyMonoMSBuildBinaries(instanceFolder);
Run("mono", $"\"{xunitInstancePath}\" {arguments}", instanceFolder)
.ExceptionOnError($"Test {testProject} failed for net472");
}
}
}
});
void CopyMonoMSBuildBinaries(string outputFolder)
{
var monoBasePath = Platform.Current.IsMacOS
? "/Library/Frameworks/Mono.framework/Versions/Current/lib/mono"
: "/usr/lib/mono";
var monoMSBuildPath = $"{monoBasePath}/msbuild/Current/bin";
DirectoryHelper.Copy(monoMSBuildPath, outputFolder, replaceFiles: false);
// Copy dependencies of Mono build
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.core", "lib", "netstandard2.0", "SQLitePCLRaw.core.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.core.dll"),
overwrite: true);
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.provider.e_sqlite3", "lib", "netstandard2.0", "SQLitePCLRaw.provider.e_sqlite3.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.provider.e_sqlite3.dll"),
overwrite: true);
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.bundle_green", "lib", "netstandard2.0", "SQLitePCLRaw.batteries_v2.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.batteries_v2.dll"),
overwrite: true);
}
void CopyExtraDependencies(BuildEnvironment env, string outputFolder)
{
// copy license
FileHelper.Copy(CombinePaths(env.WorkingDirectory, "license.md"), CombinePaths(outputFolder, "license.md"), overwrite: true);
}
void UpdateBindingRedirects(string omnisharpFolder)
{
var appConfig = CombinePaths(omnisharpFolder, "OmniSharp.exe.config");
if (!FileHelper.Exists(appConfig))
{
appConfig = CombinePaths(omnisharpFolder, "OmniSharp.dll.config");
}
// Load app.config
var document = new XmlDocument();
document.Load(appConfig);
// Find bindings
var runtime = document.GetElementsByTagName("runtime")[0];
var assemblyBinding = document.CreateElement("assemblyBinding", "urn:schemas-microsoft-com:asm.v1");
// Find OmniSharp libraries
foreach (var filePath in System.IO.Directory.GetFiles(omnisharpFolder, "OmniSharp.*.dll"))
{
// Read assembly name from OmniSharp library
var assemblyName = AssemblyName.GetAssemblyName(filePath);
// Create binding redirect and add to bindings
var redirect = CreateBindingRedirect(document, assemblyName);
assemblyBinding.AppendChild(redirect);
}
// Find Roslyn libraries
foreach (var filePath in System.IO.Directory.GetFiles(omnisharpFolder, "Microsoft.CodeAnalysis.*.dll"))
{
// Read assembly name from Roslyn library
var assemblyName = AssemblyName.GetAssemblyName(filePath);
// Create binding redirect and add to bindings
var redirect = CreateBindingRedirect(document, assemblyName);
assemblyBinding.AppendChild(redirect);
}
runtime.AppendChild(assemblyBinding);
// Save updated app.config
document.Save(appConfig);
}
XmlElement CreateBindingRedirect(XmlDocument document, AssemblyName assemblyName)
{
var dependentAssembly = document.CreateElement("dependentAssembly", "urn:schemas-microsoft-com:asm.v1");
var assemblyIdentity = document.CreateElement("assemblyIdentity", "urn:schemas-microsoft-com:asm.v1");
assemblyIdentity.SetAttribute("name", assemblyName.Name);
var publicKeyToken = BitConverter.ToString(assemblyName.GetPublicKeyToken()).Replace("-", string.Empty).ToLower();
assemblyIdentity.SetAttribute("publicKeyToken", publicKeyToken);
assemblyIdentity.SetAttribute("culture", "neutral");
dependentAssembly.AppendChild(assemblyIdentity);
var bindingRedirect = document.CreateElement("bindingRedirect", "urn:schemas-microsoft-com:asm.v1");
bindingRedirect.SetAttribute("oldVersion", $"0.0.0.0-{assemblyName.Version}");
bindingRedirect.SetAttribute("newVersion", assemblyName.Version.ToString());
dependentAssembly.AppendChild(bindingRedirect);
return dependentAssembly;
}
string PublishMonoBuild(string project, BuildEnvironment env, BuildPlan plan, string configuration)
{
Information($"Publishing Mono build for {project}...");
var outputFolder = CombinePaths(env.Folders.ArtifactsPublish, project, "mono");
var buildFolder = CombinePaths(env.Folders.Bin, configuration, project, "net472");
DirectoryHelper.Copy(buildFolder, outputFolder, copySubDirectories: false);
CopyExtraDependencies(env, outputFolder);
UpdateBindingRedirects(outputFolder);
// Copy dependencies of Mono build
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.core", "lib", "netstandard2.0", "SQLitePCLRaw.core.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.core.dll"),
overwrite: true);
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.provider.e_sqlite3", "lib", "netstandard2.0", "SQLitePCLRaw.provider.e_sqlite3.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.provider.e_sqlite3.dll"),
overwrite: true);
FileHelper.Copy(
source: CombinePaths(env.Folders.Tools, "SQLitePCLRaw.bundle_green", "lib", "netstandard2.0", "SQLitePCLRaw.batteries_v2.dll"),
destination: CombinePaths(outputFolder, "SQLitePCLRaw.batteries_v2.dll"),
overwrite: true);
Package(project, "mono", outputFolder, env.Folders.ArtifactsPackage, env.Folders.DeploymentPackage);
return outputFolder;
}
string PublishMonoBuildForPlatform(string project, MonoRuntime monoRuntime, BuildEnvironment env, BuildPlan plan)
{
Information("Publishing platform-specific Mono build: {0}", monoRuntime.PlatformName);
var outputFolder = CombinePaths(env.Folders.ArtifactsPublish, project, monoRuntime.PlatformName);
var sourceFolder = CombinePaths(env.Folders.ArtifactsPublish, project, "mono");
var omnisharpFolder = CombinePaths(outputFolder, "omnisharp");
DirectoryHelper.Copy(sourceFolder, omnisharpFolder, copySubDirectories: false);
var runScriptFile = CombinePaths(env.Folders.MonoPackaging, "run");
FileHelper.Copy(runScriptFile, CombinePaths(outputFolder, "run"), overwrite: true);
Run("chmod", $"+x \"{CombinePaths(outputFolder, "run")}\"");
CopyExtraDependencies(env, outputFolder);
UpdateBindingRedirects(omnisharpFolder);
Package(project, monoRuntime.PlatformName, outputFolder, env.Folders.ArtifactsPackage, env.Folders.DeploymentPackage);
return outputFolder;
}
Task("PublishMonoBuilds")
.IsDependentOn("Setup")
.WithCriteria(() => !Platform.Current.IsWindows)
.Does(() =>
{
foreach (var project in buildPlan.HostProjects)
{
var outputFolder = PublishMonoBuild(project, env, buildPlan, configuration);
CreateRunScript(project, outputFolder, env.Folders.ArtifactsScripts);
if (publishAll)
{
foreach (var monoRuntime in env.BuildMonoRuntimes)
{
PublishMonoBuildForPlatform(project, monoRuntime, env, buildPlan);
}
}
}
});
Task("PublishNet6Builds")
.IsDependentOn("Setup")
.Does(() =>
{
foreach (var project in buildPlan.HostProjects)
{
if (publishAll)
{
if (Platform.Current.IsWindows)
{
PublishBuild(project, env, buildPlan, configuration, "win7-x86", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "win7-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "win10-arm64", "net6.0");
}
else if (Platform.Current.IsMacOS)
{
PublishBuild(project, env, buildPlan, configuration, "osx-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "osx-arm64", "net6.0");
}
else
{
PublishBuild(project, env, buildPlan, configuration, "linux-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-arm64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-musl-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-musl-arm64", "net6.0");
}
}
else if (Platform.Current.IsWindows)
{
if (Platform.Current.IsX86)
{
PublishBuild(project, env, buildPlan, configuration, "win7-x86", "net6.0");
}
else if (Platform.Current.IsX64)
{
PublishBuild(project, env, buildPlan, configuration, "win7-x64", "net6.0");
}
else
{
PublishBuild(project, env, buildPlan, configuration, "win10-arm64", "net6.0");
}
}
else
{
if (Platform.Current.IsMacOS)
{
PublishBuild(project, env, buildPlan, configuration, "osx-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "osx-arm64", "net6.0");
}
else
{
PublishBuild(project, env, buildPlan, configuration, "linux-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-arm64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-musl-x64", "net6.0");
PublishBuild(project, env, buildPlan, configuration, "linux-musl-arm64", "net6.0");
}
}
}
});
string PublishBuild(string project, BuildEnvironment env, BuildPlan plan, string configuration, string rid, string framework)
{
var projectName = project + ".csproj";
var projectFileName = CombinePaths(env.Folders.Source, project, projectName);
var outputFolder = CombinePaths(env.Folders.ArtifactsPublish, project, rid, framework);
Information("Publishing {0} for {1}...", projectName, rid);
try
{
var publishSettings = new DotNetPublishSettings()
{
Framework = framework,
Runtime = rid, // TODO: With everything today do we need to publish this with a rid? This appears to be legacy bit when we used to push for all supported dotnet core rids.
PublishReadyToRun = true, // Improve startup performance by applying some AOT compilation
SelfContained = false, // Since we are specifying a runtime identifier this defaults to true. We don't need to ship a runtime for net6 because we require the .NET SDK to be installed.
Configuration = configuration,
OutputDirectory = outputFolder,
MSBuildSettings = new DotNetMSBuildSettings()
.WithProperty("PackageVersion", env.VersionInfo.NuGetVersion)
.WithProperty("AssemblyVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("FileVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("InformationalVersion", env.VersionInfo.InformationalVersion)
.WithProperty("RuntimeFrameworkVersion", "6.0.0-preview.7.21317.1") // Set the minimum runtime to a .NET 6 prerelease so that prerelease SDKs will be considered during rollForward.
.WithProperty("RollForward", "LatestMajor"),
ToolPath = env.DotNetCommand,
WorkingDirectory = env.WorkingDirectory,
Verbosity = DotNetVerbosity.Minimal,
};
DotNetPublish(projectFileName, publishSettings);
}
catch
{
Error($"Failed to publish {project} for {rid}");
throw;
}
CopyExtraDependencies(env, outputFolder);
UpdateBindingRedirects(outputFolder);
var platformFolder = framework != "net472" ? $"{rid}-{framework}" : rid;
Package(project, platformFolder, outputFolder, env.Folders.ArtifactsPackage, env.Folders.DeploymentPackage);
return outputFolder;
}
Task("PublishWindowsBuilds")
.WithCriteria(() => Platform.Current.IsWindows)
.IsDependentOn("Setup")
.Does(() =>
{
foreach (var project in buildPlan.HostProjects)
{
string outputFolder;
if (publishAll)
{
var outputFolderX86 = PublishBuild(project, env, buildPlan, configuration, "win7-x86", "net472");
var outputFolderX64 = PublishBuild(project, env, buildPlan, configuration, "win7-x64", "net472");
var outputFolderArm64 = PublishBuild(project, env, buildPlan, configuration, "win10-arm64", "net472");
outputFolder = Platform.Current.IsX86
? outputFolderX86
: Platform.Current.IsX64
? outputFolderX64
: outputFolderArm64;
}
else if (Platform.Current.IsX86)
{
outputFolder = PublishBuild(project, env, buildPlan, configuration, "win7-x86", "net472");
}
else if (Platform.Current.IsX64)
{
outputFolder = PublishBuild(project, env, buildPlan, configuration, "win7-x64", "net472");
}
else
{
outputFolder = PublishBuild(project, env, buildPlan, configuration, "win10-arm64", "net472");
}
CreateRunScript(project, outputFolder, env.Folders.ArtifactsScripts);
}
});
Task("PublishNuGet")
.IsDependentOn("InstallDotNetSdk")
.Does(() =>
{
DotNetPack(".", new DotNetPackSettings()
{
Configuration = "Release",
OutputDirectory = "./artifacts/nuget/",
MSBuildSettings = new DotNetMSBuildSettings()
.SetConfiguration(configuration)
.WithProperty("PackageVersion", env.VersionInfo.NuGetVersion)
.WithProperty("AssemblyVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("FileVersion", env.VersionInfo.AssemblySemVer)
.WithProperty("InformationalVersion", env.VersionInfo.InformationalVersion),
});
});
Task("Publish")
.IsDependentOn("Build")
.IsDependentOn("PublishMonoBuilds")
.IsDependentOn("PublishNet6Builds")
.IsDependentOn("PublishWindowsBuilds")
.IsDependentOn("PublishNuGet");
/// <summary>
/// Execute the run script.
/// </summary>
Task("ExecuteRunScript")
.Does(() =>
{
// TODO: Pass configuration into run script to ensure that MSBuild output paths are handled correctly.
// Otherwise, we get "could not resolve output path" messages when building for release.
foreach (var project in buildPlan.HostProjects)
{
var projectFolder = CombinePaths(env.Folders.Source, project);
var scriptPath = GetScriptPath(env.Folders.ArtifactsScripts, project);
var didNotExitWithError = Run(env.ShellCommand, $"{env.ShellArgument} \"{scriptPath}\" -s \"{projectFolder}\"",
new RunOptions(waitForIdle: true))
.WasIdle;
if (!didNotExitWithError)
{
throw new Exception($"Failed to run {scriptPath}");
}
}
});
/// <summary>
/// Quick build.
/// </summary>
Task("Quick")
.IsDependentOn("Cleanup")
.IsDependentOn("Publish");
/// <summary>
/// Clean install path.
/// </summary>
Task("CleanupInstall")
.Does(() =>
{
DirectoryHelper.ForceCreate(installFolder);
});
/// <summary>
/// Quick build + install.
/// </summary>
Task("Install")
.IsDependentOn("Cleanup")
.IsDependentOn("Publish")
.IsDependentOn("CleanupInstall")
.Does(() =>
{
foreach (var project in buildPlan.HostProjects)
{
string platform;
if (Platform.Current.IsWindows)
{
platform = Platform.Current.IsX86
? "win7-x86"
: Platform.Current.IsX64
? "win7-x64"
: "win10-arm64";
}
else
{
platform = "mono";
}
var outputFolder = PathHelper.GetFullPath(CombinePaths(env.Folders.ArtifactsPublish, project, platform));
var targetFolder = PathHelper.GetFullPath(CombinePaths(installFolder));
DirectoryHelper.Copy(outputFolder, targetFolder);
CreateRunScript(project, installFolder, env.Folders.ArtifactsScripts);
Information($"OmniSharp is installed locally at {installFolder}");
}
});
/// <summary>
/// Full build and execute script at the end.
/// </summary>
Task("All")
.IsDependentOn("Cleanup")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Publish")
.IsDependentOn("ExecuteRunScript");
/// <summary>
/// Default Task aliases to All.
/// </summary>
Task("Default")
.IsDependentOn("All");
/// <summary>
/// Task aliases for CI (excluding tests) as they are parallelized
/// </summary>
Task("CI")
.IsDependentOn("Cleanup")
.IsDependentOn("Build")
.IsDependentOn("Publish")
.IsDependentOn("ExecuteRunScript");
Teardown(context =>
{
// Ensure that we shutdown all build servers used by the CLI during build.
Run(env.DotNetCommand, "build-server shutdown");
});
/// <summary>
/// Default to All.
/// </summary>
RunTarget(target);