forked from NancyFx/Nancy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
404 lines (352 loc) · 13.9 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
// Usings
using System.Xml;
using System.Xml.Linq;
using System.Xml.XPath;
// Arguments
var target = Argument<string>("target", "Default");
var source = Argument<string>("source", null);
var apiKey = Argument<string>("apikey", null);
var version = Argument<string>("targetversion", "2.0.0-Pre" + (EnvironmentVariable("APPVEYOR_BUILD_NUMBER") ?? "0"));
var skipClean = Argument<bool>("skipclean", false);
var skipTests = Argument<bool>("skiptests", false);
var nogit = Argument<bool>("nogit", false);
// Variables
var configuration = IsRunningOnWindows() ? "Release" : "MonoRelease";
var projectJsonFiles = GetFiles("./src/**/project.json");
// Directories
var output = Directory("build");
var outputBinaries = output + Directory("binaries");
var outputBinariesNet452 = outputBinaries + Directory("net452");
var outputBinariesNetstandard = outputBinaries + Directory("netstandard1.6");
var outputPackages = output + Directory("packages");
var outputNuGet = output + Directory("nuget");
/*
/ TASK DEFINITIONS
*/
Task("Default")
.IsDependentOn("Test")
.IsDependentOn("Update-Version")
.IsDependentOn("Package-NuGet");
Task("Clean")
.Does(() =>
{
CleanDirectories(new DirectoryPath[] {
output,
outputBinaries,
outputPackages,
outputNuGet,
outputBinariesNet452,
outputBinariesNetstandard
});
if(!skipClean) {
CleanDirectories("./src/**/" + configuration);
CleanDirectories("./test/**/" + configuration);
CleanDirectories("./samples/**/" + configuration);
}
});
Task("Compile")
.Description("Builds the solution")
.IsDependentOn("Clean")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
if (IsRunningOnUnix())
{
var srcProjects = GetFiles("./src/**/*.xproj");
if (srcProjects.Count == 0)
{
throw new CakeException("Unable to find any projects to build.");
}
srcProjects = srcProjects - GetFiles("./**/Nancy.Encryption.MachineKey.xproj");
var testProjects = GetFiles("./test/**/*.xproj");
var dotnetTestProjects = testProjects
- GetFiles("test/**/Nancy.Embedded.Tests.xproj")
- GetFiles("test/**/Nancy.Encryption.MachineKey.Tests.xproj")
- GetFiles("test/**/Nancy.Hosting.Aspnet.Tests.xproj")
- GetFiles("test/**/Nancy.Hosting.Self.Tests.xproj")
- GetFiles("test/**/Nancy.Owin.Tests.xproj")
- GetFiles("test/**/Nancy.Validation.DataAnnotatioins.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.DotLiquid.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Markdown.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Razor.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Razor.Tests.Models.xproj");
foreach(var srcProject in srcProjects)
{
DotNetCoreBuild(srcProject.GetDirectory().FullPath, new DotNetCoreBuildSettings {
Configuration = configuration,
Verbose = false
});
}
foreach(var testProject in testProjects)
{
DotNetCoreBuild(testProject.GetDirectory().FullPath, new DotNetCoreBuildSettings {
Configuration = configuration,
Verbose = false,
Framework = "net452",
Runtime = "unix-x64"
});
}
foreach(var dotnetTestProject in dotnetTestProjects)
{
DotNetCoreBuild(dotnetTestProject.GetDirectory().FullPath, new DotNetCoreBuildSettings {
Configuration = configuration,
Verbose = false,
Framework = "netcoreapp1.0"
});
}
}
else
{
var projects = GetFiles("./**/*.xproj");
projects = projects
- GetFiles("./**/Nancy.Encryption.MachineKey.xproj");
foreach(var project in projects)
{
DotNetCoreBuild(project.GetDirectory().FullPath, new DotNetCoreBuildSettings {
Configuration = configuration,
Verbose = false
});
}
}
});
Task("Package")
.Description("Zips up the built binaries for easy distribution")
.IsDependentOn("Publish")
.Does(() =>
{
var package =
outputPackages + File("Nancy-Latest.zip");
var files =
GetFiles(outputBinaries.Path.FullPath + "/**/*");
Zip(outputBinaries, package, files);
});
Task("Package-NuGet")
.Description("Generates NuGet packages for each project that contains a nuspec")
.Does(() =>
{
var projects = GetFiles("./src/**/*.xproj");
foreach(var project in projects)
{
var settings = new DotNetCorePackSettings {
Configuration = "Release",
OutputDirectory = outputNuGet
};
DotNetCorePack(project.GetDirectory().FullPath, settings);
}
});
Task("Publish")
.Description("Gathers output files and copies them to the output folder")
.IsDependentOn("Compile")
.Does(() =>
{
// Copy net452 binaries.
CopyFiles(GetFiles("src/**/bin/" + configuration + "/net452/*.dll")
+ GetFiles("src/**/bin/" + configuration + "/net452/*.xml")
+ GetFiles("src/**/bin/" + configuration + "/net452/*.pdb")
+ GetFiles("src/**/*.ps1"), outputBinariesNet452);
// Copy netstandard binaries.
CopyFiles(GetFiles("src/**/bin/" + configuration + "/netstandard1.6/*.dll")
+ GetFiles("src/**/bin/" + configuration + "/netstandard1.6/*.xml")
+ GetFiles("src/**/bin/" + configuration + "/netstandard1.6/*.pdb")
+ GetFiles("src/**/*.ps1"), outputBinariesNetstandard);
});
Task("Publish-NuGet")
.Description("Pushes the nuget packages in the nuget folder to a NuGet source. Also publishes the packages into the feeds.")
.Does(() =>
{
if(string.IsNullOrWhiteSpace(apiKey)) {
throw new CakeException("No NuGet API key provided. You need to pass in --apikey=\"xyz\"");
}
var packages =
GetFiles(outputNuGet.Path.FullPath + "/*.nupkg") -
GetFiles(outputNuGet.Path.FullPath + "/*.symbols.nupkg");
foreach(var package in packages)
{
NuGetPush(package, new NuGetPushSettings {
Source = source,
ApiKey = apiKey
});
}
});
Task("Prepare-Release")
.Does(() =>
{
// Update version.
UpdateProjectJsonVersion(version, projectJsonFiles);
// Add
foreach (var file in projectJsonFiles)
{
if (nogit)
{
Information("git " + string.Format("add {0}", file.FullPath));
}
else
{
StartProcess("git", new ProcessSettings {
Arguments = string.Format("add {0}", file.FullPath)
});
}
}
// Commit
if (nogit)
{
Information("git " + string.Format("commit -m \"Updated version to {0}\"", version));
}
else
{
StartProcess("git", new ProcessSettings {
Arguments = string.Format("commit -m \"Updated version to {0}\"", version)
});
}
// Tag
if (nogit)
{
Information("git " + string.Format("tag \"v{0}\"", version));
}
else
{
StartProcess("git", new ProcessSettings {
Arguments = string.Format("tag \"v{0}\"", version)
});
}
//Push
if (nogit)
{
Information("git push origin master");
Information("git push --tags");
}
else
{
StartProcess("git", new ProcessSettings {
Arguments = "push origin master"
});
StartProcess("git", new ProcessSettings {
Arguments = "push --tags"
});
}
});
Task("Restore-NuGet-Packages")
.Description("Restores NuGet packages")
.Does(() =>
{
var settings = new DotNetCoreRestoreSettings
{
Verbose = false,
Verbosity = DotNetCoreRestoreVerbosity.Warning,
Sources = new [] {
"https://www.myget.org/F/xunit/api/v3/index.json",
"https://dotnet.myget.org/F/dotnet-core/api/v3/index.json",
"https://dotnet.myget.org/F/cli-deps/api/v3/index.json",
"https://api.nuget.org/v3/index.json"
}
};
//Restore at root until preview1-002702 bug fixed
DotNetCoreRestore("./", settings);
//DotNetCoreRestore("./src", settings);
//DotNetCoreRestore("./samples", settings);
//DotNetCoreRestore("./test", settings);
});
Task("Tag")
.Description("Tags the current release.")
.Does(() =>
{
StartProcess("git", new ProcessSettings {
Arguments = string.Format("tag \"v{0}\"", version)
});
});
Task("Test")
.Description("Executes xUnit tests")
.WithCriteria(!skipTests)
.IsDependentOn("Compile")
.Does(() =>
{
var projects =
GetFiles("./test/**/*.xproj") -
GetFiles("./test/**/Nancy.ViewEngines.Razor.Tests.Models.xproj");
if (projects.Count == 0)
{
throw new CakeException("Unable to find any projects to test.");
}
if (IsRunningOnUnix())
{
projects = projects
- GetFiles("./test/**/Nancy.Encryption.MachineKey.Tests.xproj")
- GetFiles("./test/**/Nancy.ViewEngines.DotLiquid.Tests.xproj")
- GetFiles("./test/**/Nancy.Embedded.Tests.xproj"); //Embedded somehow doesnt get executed on Travis but nothing explicit sets it
var testProjects = GetFiles("./test/**/*.xproj");
var dotnetTestProjects = testProjects
- GetFiles("test/**/Nancy.Embedded.Tests.xproj")
- GetFiles("test/**/Nancy.Encryption.MachineKey.Tests.xproj")
- GetFiles("test/**/Nancy.Hosting.Aspnet.Tests.xproj")
- GetFiles("test/**/Nancy.Hosting.Self.Tests.xproj")
- GetFiles("test/**/Nancy.Owin.Tests.xproj")
- GetFiles("test/**/Nancy.Validation.DataAnnotatioins.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.DotLiquid.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Markdown.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Razor.Tests.xproj")
- GetFiles("test/**/Nancy.ViewEngines.Razor.Tests.Models.xproj");
foreach(var dotnetTestProject in dotnetTestProjects)
{
DotNetCoreTest(dotnetTestProject.GetDirectory().FullPath, new DotNetCoreTestSettings {
Configuration = configuration,
Framework = "netcoreapp1.0"
});
}
}
foreach(var project in projects)
{
if (IsRunningOnWindows())
{
DotNetCoreTest(project.GetDirectory().FullPath, new DotNetCoreTestSettings {
Configuration = configuration
});
}
else
{
var dirPath = project.GetDirectory().FullPath;
var testFile = project.GetFilenameWithoutExtension();
var settings = new ProcessSettings {
Arguments =
dirPath + "/bin/" + configuration + "/net452/unix-x64/dotnet-test-xunit.exe" + " " +
dirPath + "/bin/" + configuration + "/net452/unix-x64/" + testFile + ".dll"
};
using(var process = StartAndReturnProcess("mono", settings))
{
process.WaitForExit();
if (process.GetExitCode() != 0)
{
throw new Exception("Nancy tests failed.");
}
}
}
}
});
Task("Update-Version")
.Does(() =>
{
Information("Setting version to " + version);
if(string.IsNullOrWhiteSpace(version)) {
throw new CakeException("No version specified! You need to pass in --targetversion=\"x.y.z\"");
}
UpdateProjectJsonVersion(version, projectJsonFiles);
});
/*
/ RUN BUILD TARGET
*/
RunTarget(target);
/*
/ HELPER FUNCTIONS
*/
public static void UpdateProjectJsonVersion(string version, FilePathCollection filePaths)
{
foreach (var file in filePaths)
{
var project =
System.IO.File.ReadAllText(file.FullPath, Encoding.UTF8);
var projectVersion =
new System.Text.RegularExpressions.Regex("(\"version\":\\s*)\".+\"");
project =
projectVersion.Replace(project, "$1\"" + version + "\"", 1);
System.IO.File.WriteAllText(file.FullPath, project, Encoding.UTF8);
}
}