-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.cake
356 lines (299 loc) · 11.3 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
#tool "nuget:?package=JetBrains.dotCover.CommandLineTools"
#tool "nuget:?package=OpenCover"
#tool "nuget:?package=xunit.runner.console"
#tool "nuget:?package=ReportGenerator"
///////////////////////////////////////////////////////////////////////////////
// ARGUMENTS
///////////////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var nogit = false;
var fullFrameworkTarget = "net452";
var netStandardTarget = "netstandard2.0";
var netCoreTarget = "netcoreapp2.0";
var nugetSource = "https://api.nuget.org/v3/index.json";
var version = string.Empty;
// Directories
var output = Directory("build");
var outputBinaries = output + Directory("binaries");
var outputBinariesCore = outputBinaries + Directory(netCoreTarget);
var outputBinariesNetstandard = outputBinaries + Directory(netStandardTarget);
var outputPackages = output + Directory("packages");
var outputNuGet = output + Directory("nuget");
// Files
var zipFile = outputPackages + File("CouchDB-Client-Latest.zip");
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(ctx =>
{
// Executed BEFORE the first task.
Information("Cleaning Folders");
CleanDirectories(new DirectoryPath[] {
output,
outputBinaries,
outputPackages,
outputNuGet,
outputBinariesCore,
outputBinariesNetstandard
});
CleanDirectories("./src/**/" + configuration);
CleanDirectories("./test/**/" + configuration);
CleanDirectories("./samples/**/" + configuration);
});
// Teardown(ctx =>
// {
// // Executed AFTER the last task.
// Information("Finished running tasks.");
// });
///////////////////////////////////////////////////////////////////////////////
// TASKS
///////////////////////////////////////////////////////////////////////////////
Task("Restore-NuGet-Packages")
.Description("Restores NuGet packages for all projects")
.Does(() =>
{
DotNetCoreRestore(new DotNetCoreRestoreSettings {
ArgumentCustomization = args => {
args.Append("--verbosity minimal");
return args;
}
});
Information("NuGet packages restored");
});
Task("Compile")
.Description("Builds all the projects in the solution")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
var projects =
GetFiles("./src/**/*.csproj")
+ GetFiles("./test/**/*.csproj")
+ GetFiles("./sample/**/*.csproj");
foreach(var project in projects)
{
var content =
System.IO.File.ReadAllText(project.FullPath, Encoding.UTF8);
if (IsRunningOnUnix() && content.Contains(">" + fullFrameworkTarget + "<"))
{
Information(project.GetFilename() + " only supports " +fullFrameworkTarget + " and cannot be built on *nix. Skipping.");
continue;
}
DotNetCoreBuild(project.GetDirectory().FullPath, new DotNetCoreBuildSettings {
ArgumentCustomization = args => {
if (IsRunningOnUnix())
{
args.Append(string.Concat("-f ", project.GetDirectory().GetDirectoryName().Contains(".Tests") ? netCoreTarget : netStandardTarget));
}
return args;
},
Configuration = configuration
});
Information("Project Compiled: " + project);
}
});
Task("Test")
.Description("Executes unit tests for all projects")
.IsDependentOn("Compile")
.Does(() =>
{
var projects =
GetFiles("./test/**/*.csproj");
if (projects.Count == 0)
{
throw new CakeException("Unable to find any projects to test.");
}
foreach(var project in projects)
{
var content =
System.IO.File.ReadAllText(project.FullPath, Encoding.UTF8);
if (IsRunningOnUnix() && content.Contains(">" + fullFrameworkTarget + "<"))
{
Information(project.GetFilename() + " only supports " +fullFrameworkTarget + " and tests cannot be executed on *nix. Skipping.");
continue;
}
var settings = new ProcessSettings {
Arguments = string.Concat("xunit -configuration ", configuration, " -nobuild"),
WorkingDirectory = project.GetDirectory()
};
if (IsRunningOnUnix())
{
settings.Arguments.Append(string.Concat("-framework ", netCoreTarget));
}
Information("Executing tests for " + project.GetFilename() + " with arguments: " + settings.Arguments.Render());
if (StartProcess("dotnet", settings) != 0)
{
throw new CakeException("One or more tests failed during execution of: " + project.GetFilename());
}
}
});
Task("Cover")
.Description("Coverage Test")
.IsDependentOn("Test")
.Does(() =>
{
});
Task("Publish")
.Description("Gathers output files and copies them to the output folder")
.IsDependentOn("Cover")
.Does(() =>
{
// Copy netcore binaries.
CopyFiles(GetFiles("./src/**/bin/" + configuration + "/" + netCoreTarget + "/*.dll")
+ GetFiles("./src/**/bin/" + configuration + "/" + netCoreTarget + "/*.xml")
+ GetFiles("./src/**/bin/" + configuration + "/" + netCoreTarget + "/*.pdb")
, outputBinariesCore);
// Copy netstandard binaries.
CopyFiles(GetFiles("./src/**/bin/" + configuration + "/" + netStandardTarget + "/*.dll")
+ GetFiles("./src/**/bin/" + configuration + "/" + netStandardTarget + "/*.xml")
+ GetFiles("./src/**/bin/" + configuration + "/" + netStandardTarget + "/*.pdb")
, outputBinariesNetstandard);
Information("Binaries published: ./" + outputBinaries);
});
Task("Package")
.Description("Zips up the built binaries for easy distribution")
.IsDependentOn("Publish")
.Does(() =>
{
var files =
GetFiles(outputBinaries.Path.FullPath + "/**/*");
Zip(outputBinaries, zipFile, files);
Information("Zip file generated: ./" + zipFile);
});
Task("Update-Version")
.IsDependentOn("Package")
.Does(() =>
{
var projects =
GetFiles("./**/*.csproj");
foreach(var projectInfo in projects)
{
var project =
System.IO.File.ReadAllText(projectInfo.ToString(), Encoding.UTF8);
var projectVersion =
new System.Text.RegularExpressions.Regex(@"<Version>(?<ver>.+)<\/Version>");
var match = projectVersion.Match(project);
if (match.Success)
{
var currentVersion = match.Groups["ver"].Value;
var nextVersion = string.Empty;
var ver = System.Version.Parse(currentVersion);
// Increase version
if (ver.MinorRevision > -1)
nextVersion = string.Format("{0}.{1}.{2}.{3}", ver.Major, ver.Minor, ver.Build, ver.MinorRevision + 1);
else if (ver.Build > -1)
nextVersion = string.Format("{0}.{1}.{2}", ver.Major, ver.Minor, ver.Build + 1);
else if (ver.Minor > -1)
nextVersion = string.Format("{0}.{1}", ver.Major, ver.Minor + 1);
//else
//throw new InvalidOperationException("The version number is not valid");
if (!string.IsNullOrWhiteSpace(nextVersion))
{
project =
projectVersion.Replace(project, string.Concat("<Version>", nextVersion, "</Version>"));
System.IO.File.WriteAllText(projectInfo.ToString(), project, Encoding.UTF8);
}
}
}
});
Task("Package-NuGet")
.Description("Generates NuGet packages for each project")
.IsDependentOn("Update-Version")
.Does(() =>
{
foreach(var project in GetFiles("./src/**/*.csproj"))
{
Information("Packaging " + project.GetFilename().FullPath);
var content =
System.IO.File.ReadAllText(project.FullPath, Encoding.UTF8);
if (IsRunningOnUnix() && content.Contains(">" + fullFrameworkTarget + "<"))
{
Information(project.GetFilename() + " only supports " +fullFrameworkTarget + " and cannot be packaged on *nix. Skipping.");
continue;
}
DotNetCorePack(project.GetDirectory().FullPath, new DotNetCorePackSettings {
Configuration = configuration,
OutputDirectory = outputNuGet
});
Information("Package generated: " + project.GetDirectory().FullPath);
}
});
Task("Publish-NuGet")
.Description("Pushes the nuget packages in the nuget folder to a NuGet source. Also publishes the packages into the feeds.")
.IsDependentOn("Package-NuGet")
.Does(() =>
{
var packages =
GetFiles(outputNuGet.Path.FullPath + "/*.nupkg") -
GetFiles(outputNuGet.Path.FullPath + "/*.symbols.nupkg");
foreach(var package in packages)
{
NuGetPush(package, new NuGetPushSettings {
Source = nugetSource
// ApiKey = apiKey
});
Information("Nuget pushed: " + package);
}
});
Task("Prepare-Release")
.IsDependentOn("Publish-NuGet")
.Does(() =>
{
// Add
foreach (var file in GetFiles("./src/**/*.csproj"))
{
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("Default")
.IsDependentOn("Compile")
.Does(() => {
Information("Compilation Executed!");
});
RunTarget(target);