forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
502 lines (412 loc) · 16.7 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
//////////////////////////////////////////////////////////////////////
// ADDINS
//////////////////////////////////////////////////////////////////////
#addin "Cake.FileHelpers"
#addin "Cake.Coveralls"
//////////////////////////////////////////////////////////////////////
// TOOLS
//////////////////////////////////////////////////////////////////////
#tool "GitReleaseManager"
#tool "GitVersion.CommandLine"
#tool "GitLink"
#tool "coveralls.io"
#tool "OpenCover"
#tool "ReportGenerator"
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
if (string.IsNullOrWhiteSpace(target))
{
target = "Default";
}
//////////////////////////////////////////////////////////////////////
// PREPARATION
//////////////////////////////////////////////////////////////////////
// Should MSBuild & GitLink treat any errors as warnings?
var treatWarningsAsErrors = false;
// Build configuration
var local = BuildSystem.IsLocalBuild;
var isRunningOnUnix = IsRunningOnUnix();
var isRunningOnWindows = IsRunningOnWindows();
var isRunningOnAppVeyor = AppVeyor.IsRunningOnAppVeyor;
var isPullRequest = AppVeyor.Environment.PullRequest.IsPullRequest;
var isRepository = StringComparer.OrdinalIgnoreCase.Equals("reactiveui/reactiveui", AppVeyor.Environment.Repository.Name);
var isDevelopBranch = StringComparer.OrdinalIgnoreCase.Equals("develop", AppVeyor.Environment.Repository.Branch);
var isReleaseBranch = StringComparer.OrdinalIgnoreCase.Equals("master", AppVeyor.Environment.Repository.Branch);
var isTagged = AppVeyor.Environment.Repository.Tag.IsTag;
var githubOwner = "reactiveui";
var githubRepository = "reactiveui";
var githubUrl = string.Format("https://github.com/{0}/{1}", githubOwner, githubRepository);
// Version
var gitVersion = GitVersion();
var majorMinorPatch = gitVersion.MajorMinorPatch;
var semVersion = gitVersion.SemVer;
var informationalVersion = gitVersion.InformationalVersion;
var nugetVersion = gitVersion.NuGetVersion;
var buildVersion = gitVersion.FullBuildMetaData;
// Artifacts
var artifactDirectory = "./artifacts/";
var testCoverageOutputFile = artifactDirectory + "OpenCover.xml";
var packageWhitelist = new[] { "ReactiveUI-Testing", "ReactiveUI-Events", "ReactiveUI-Events-XamForms", "ReactiveUI", "ReactiveUI-Core", "ReactiveUI-AndroidSupport", "ReactiveUI-Blend", "ReactiveUI-Winforms", "ReactiveUI-XamForms" };
// Define global marcos.
Action Abort = () => { throw new Exception("a non-recoverable fatal error occurred."); };
Action<string> RestorePackages = (solution) =>
{
NuGetRestore(solution, new NuGetRestoreSettings() { ConfigFile = "./src/.nuget/NuGet.config" });
};
Action<string, string> Package = (nuspec, basePath) =>
{
CreateDirectory(artifactDirectory);
Information("Packaging {0} using {1} as the BasePath.", nuspec, basePath);
NuGetPack(nuspec, new NuGetPackSettings {
Authors = new [] {"ReactiveUI contributors"},
Owners = new [] {"xpaulbettsx", "flagbug", "ghuntley", "haacked", "kent.boogaart", "mteper", "moswald", "niik", "onovotny", "rdavisau", "shiftkey"},
ProjectUrl = new Uri("http://www.reactiveui.net"),
IconUrl = new Uri("https://i.imgur.com/7WDbqSy.png"),
LicenseUrl = new Uri("https://opensource.org/licenses/ms-pl.html"),
Copyright = "Copyright (c) ReactiveUI and contributors",
RequireLicenseAcceptance = false,
Version = nugetVersion,
Tags = new [] {"mvvm", "reactiveui", "Rx", "Reactive Extensions", "Observable", "LINQ", "Events", "xamarin", "android", "ios", "forms", "monodroid", "monotouch", "xamarin.android", "xamarin.ios", "xamarin.forms", "wpf", "winforms", "uwp", "winrt", "net45", "netcore", "wp", "wpdev", "windowsphone", "windowsstore"},
ReleaseNotes = new [] { string.Format("{0}/releases", githubUrl) },
Symbols = false,
Verbosity = NuGetVerbosity.Detailed,
OutputDirectory = artifactDirectory,
BasePath = basePath,
});
};
Action<string> SourceLink = (solutionFileName) =>
{
GitLink("./", new GitLinkSettings() {
RepositoryUrl = "https://github.com/reactiveui/ReactiveUI",
SolutionFileName = solutionFileName,
ErrorsAsWarnings = treatWarningsAsErrors,
});
};
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
if (!isRunningOnWindows)
{
throw new NotImplementedException("ReactiveUI will only build on Windows (w/Xamarin installed) because it's not possible to target UWP, WPF and Windows Forms from UNIX.");
}
Information("Building version {0} of ReactiveUI. (isTagged: {1})", informationalVersion, isTagged);
});
Teardown(context =>
{
// Executed AFTER the last task.
});
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("BuildEventBuilder")
.IsDependentOn("RestorePackages")
.IsDependentOn("UpdateAssemblyInfo")
.Does (() =>
{
var solution = "./src/EventBuilder.sln";
MSBuild(solution, new MSBuildSettings()
.SetConfiguration("Release")
.WithProperty("TreatWarningsAsErrors", treatWarningsAsErrors.ToString())
.SetVerbosity(Verbosity.Minimal)
.SetNodeReuse(false));
SourceLink(solution);
});
Task("GenerateEvents")
.IsDependentOn("BuildEventBuilder")
.Does (() =>
{
var eventBuilder = "./src/EventBuilder/bin/Release/EventBuilder.exe";
var workingDirectory = "./src/EventBuilder/bin/Release";
Action<string> generate = (string platform) =>
{
using(var process = StartAndReturnProcess(eventBuilder,
new ProcessSettings{
Arguments = "--platform=" + platform,
WorkingDirectory = workingDirectory,
RedirectStandardOutput = true }))
{
// super important to ensure that the platform is always
// uppercase so that the events are written to the write
// filename as UNIX is case-sensitive - even though OSX
// isn't by default.
platform = platform.ToUpper();
Information("Generating events for '{0}'", platform);
int timeout = 10 * 60 * 1000; // x Minute, y Second, z Millisecond
process.WaitForExit(timeout);
var stdout = process.GetStandardOutput();
int success = 0; // exit code aka %ERRORLEVEL% or $?
if (process.GetExitCode() != success)
{
Error("Failed to generate events for '{0}'", platform);
Abort();
}
var directory = "src/ReactiveUI.Events/";
var filename = String.Format("Events_{0}.cs", platform);
var output = System.IO.Path.Combine(directory, filename);
FileWriteLines(output, stdout.ToArray());
Information("The events have been written to '{0}'", output);
}
};
generate("android");
generate("ios");
generate("mac");
generate("xamforms");
generate("net45");
generate("wpa81");
generate("uwp");
});
Task("BuildEvents")
.IsDependentOn("GenerateEvents")
.Does (() =>
{
Action<string> build = (filename) =>
{
var solution = System.IO.Path.Combine("./src/ReactiveUI.Events/", filename);
// UWP (project.json) needs to be restored before it will build.
RestorePackages (solution);
Information("Building {0}", solution);
MSBuild(solution, new MSBuildSettings()
.SetConfiguration("Release")
.WithProperty("NoWarn", "1591") // ignore missing XML doc warnings
.WithProperty("TreatWarningsAsErrors", treatWarningsAsErrors.ToString())
.SetVerbosity(Verbosity.Minimal)
.SetNodeReuse(false));
SourceLink(solution);
};
build("ReactiveUI.Events_Android.sln");
build("ReactiveUI.Events_iOS.sln");
build("ReactiveUI.Events_MAC.sln");
build("ReactiveUI.Events_XamForms.sln");
build("ReactiveUI.Events_NET45.sln");
build("ReactiveUI.Events_WPA81.sln");
build("ReactiveUI.Events_UWP.sln");
});
Task("PackageEvents")
.IsDependentOn("BuildEvents")
.Does (() =>
{
Package("./src/ReactiveUI-Events.nuspec", "./src/ReactiveUI.Events");
Package("./src/ReactiveUI-Events-XamForms.nuspec", "./src/ReactiveUI.Events");
});
Task("BuildReactiveUI")
.IsDependentOn("RestorePackages")
.IsDependentOn("UpdateAssemblyInfo")
.Does (() =>
{
Action<string> build = (solution) =>
{
Information("Building {0}", solution);
MSBuild(solution, new MSBuildSettings()
.SetConfiguration("Release")
.WithProperty("NoWarn", "1591") // ignore missing XML doc warnings
.WithProperty("TreatWarningsAsErrors", treatWarningsAsErrors.ToString())
.SetVerbosity(Verbosity.Minimal)
.SetNodeReuse(false));
SourceLink(solution);
};
build("./src/ReactiveUI.sln");
});
Task("PackageReactiveUI")
.IsDependentOn("BuildReactiveUI")
.IsDependentOn("RunUnitTests")
.Does (() =>
{
// use pwd as as cake needs a basePath, even if making a meta-package that contains no files.
Package("./src/ReactiveUI.nuspec", "./");
Package("./src/ReactiveUI-Core.nuspec", "./src/ReactiveUI");
Package("./src/ReactiveUI-AndroidSupport.nuspec", "./src/ReactiveUI.AndroidSupport");
Package("./src/ReactiveUI-Blend.nuspec", "./src/ReactiveUI.Blend");
Package("./src/ReactiveUI-Testing.nuspec", "./src/ReactiveUI.Testing");
Package("./src/ReactiveUI-Winforms.nuspec", "./src/ReactiveUI.Winforms");
Package("./src/ReactiveUI-XamForms.nuspec", "./src/ReactiveUI.XamForms");
});
Task("UpdateAppVeyorBuildNumber")
.WithCriteria(() => isRunningOnAppVeyor)
.Does(() =>
{
AppVeyor.UpdateBuildVersion(buildVersion);
}).ReportError(exception =>
{
// When a build starts, the initial identifier is an auto-incremented value supplied by AppVeyor.
// As part of the build script, this version in AppVeyor is changed to be the version obtained from
// GitVersion. This identifier is purely cosmetic and is used by the core team to correlate a build
// with the pull-request. In some circumstances, such as restarting a failed/cancelled build the
// identifier in AppVeyor will be already updated and default behaviour is to throw an
// exception/cancel the build when in fact it is safe to swallow.
// See https://github.com/reactiveui/ReactiveUI/issues/1262
Warning("Build with version {0} already exists.", buildVersion);
});
Task("UpdateAssemblyInfo")
.IsDependentOn("UpdateAppVeyorBuildNumber")
.Does (() =>
{
var file = "./src/CommonAssemblyInfo.cs";
CreateAssemblyInfo(file, new AssemblyInfoSettings {
Product = "ReactiveUI",
Version = majorMinorPatch,
FileVersion = majorMinorPatch,
InformationalVersion = informationalVersion,
Copyright = "Copyright (c) ReactiveUI and contributors"
});
});
Task("RestorePackages").Does (() =>
{
RestorePackages("./src/EventBuilder.sln");
RestorePackages("./src/ReactiveUI.sln");
});
Task("RunUnitTests")
.IsDependentOn("BuildReactiveUI")
.Does(() =>
{
Action<ICakeContext> testAction = tool => {
tool.XUnit2("./src/ReactiveUI.Tests/bin/Release/Net45/ReactiveUI.Tests_Net45.dll", new XUnit2Settings {
OutputDirectory = artifactDirectory,
XmlReportV1 = true,
NoAppDomain = true
});
};
OpenCover(testAction,
testCoverageOutputFile,
new OpenCoverSettings {
ReturnTargetCodeOffset = 0,
ArgumentCustomization = args => args.Append("-mergeoutput")
}
.WithFilter("+[*]* -[*.Testing]* -[*.Tests*]* -[Playground*]* -[ReactiveUI.Events]* -[Splat*]*")
.ExcludeByAttribute("*.ExcludeFromCodeCoverage*")
.ExcludeByFile("*/*Designer.cs;*/*.g.cs;*/*.g.i.cs;*splat/splat*"));
ReportGenerator(testCoverageOutputFile, artifactDirectory);
});
Task("UploadTestCoverage")
.WithCriteria(() => !local)
.WithCriteria(() => isRepository)
.IsDependentOn("RunUnitTests")
.Does(() =>
{
// Resolve the API key.
var token = EnvironmentVariable("COVERALLS_TOKEN");
if (string.IsNullOrEmpty(token))
{
throw new Exception("The COVERALLS_TOKEN environment variable is not defined.");
}
CoverallsIo(testCoverageOutputFile, new CoverallsIoSettings()
{
RepoToken = token
});
});
Task("Package")
.IsDependentOn("PackageEvents")
.IsDependentOn("PackageReactiveUI")
.IsDependentOn("UploadTestCoverage")
.Does (() =>
{
});
Task("PublishPackages")
.IsDependentOn("RunUnitTests")
.IsDependentOn("Package")
.WithCriteria(() => !local)
.WithCriteria(() => !isPullRequest)
.WithCriteria(() => isRepository)
.WithCriteria(() => isDevelopBranch || isReleaseBranch)
.Does (() =>
{
if (isReleaseBranch && !isTagged)
{
Information("Packages will not be published as this release has not been tagged.");
return;
}
// Resolve the API key.
var apiKey = EnvironmentVariable("NUGET_APIKEY");
if (string.IsNullOrEmpty(apiKey))
{
throw new Exception("The NUGET_APIKEY environment variable is not defined.");
}
var source = EnvironmentVariable("NUGET_SOURCE");
if (string.IsNullOrEmpty(source))
{
throw new Exception("The NUGET_SOURCE environment variable is not defined.");
}
// only push whitelisted packages.
foreach(var package in packageWhitelist)
{
// only push the package which was created during this build run.
var packagePath = artifactDirectory + File(string.Concat(package, ".", nugetVersion, ".nupkg"));
// Push the package.
NuGetPush(packagePath, new NuGetPushSettings {
Source = source,
ApiKey = apiKey
});
}
});
Task("CreateRelease")
.IsDependentOn("Package")
.WithCriteria(() => !local)
.WithCriteria(() => !isPullRequest)
.WithCriteria(() => isRepository)
.WithCriteria(() => isReleaseBranch)
.WithCriteria(() => !isTagged)
.Does (() =>
{
var username = EnvironmentVariable("GITHUB_USERNAME");
if (string.IsNullOrEmpty(username))
{
throw new Exception("The GITHUB_USERNAME environment variable is not defined.");
}
var token = EnvironmentVariable("GITHUB_TOKEN");
if (string.IsNullOrEmpty(token))
{
throw new Exception("The GITHUB_TOKEN environment variable is not defined.");
}
GitReleaseManagerCreate(username, token, githubOwner, githubRepository, new GitReleaseManagerCreateSettings {
Milestone = majorMinorPatch,
Name = majorMinorPatch,
Prerelease = true,
TargetCommitish = "master"
});
});
Task("PublishRelease")
.IsDependentOn("RunUnitTests")
.IsDependentOn("Package")
.WithCriteria(() => !local)
.WithCriteria(() => !isPullRequest)
.WithCriteria(() => isRepository)
.WithCriteria(() => isReleaseBranch)
.WithCriteria(() => isTagged)
.Does (() =>
{
var username = EnvironmentVariable("GITHUB_USERNAME");
if (string.IsNullOrEmpty(username))
{
throw new Exception("The GITHUB_USERNAME environment variable is not defined.");
}
var token = EnvironmentVariable("GITHUB_TOKEN");
if (string.IsNullOrEmpty(token))
{
throw new Exception("The GITHUB_TOKEN environment variable is not defined.");
}
// only push whitelisted packages.
foreach(var package in packageWhitelist)
{
// only push the package which was created during this build run.
var packagePath = artifactDirectory + File(string.Concat(package, ".", nugetVersion, ".nupkg"));
GitReleaseManagerAddAssets(username, token, githubOwner, githubRepository, majorMinorPatch, packagePath);
}
GitReleaseManagerClose(username, token, githubOwner, githubRepository, majorMinorPatch);
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("CreateRelease")
.IsDependentOn("PublishPackages")
.IsDependentOn("PublishRelease")
.Does (() =>
{
});
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);