forked from nunit/nunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
662 lines (567 loc) · 23.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
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
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
#tool nuget:?package=NUnit.ConsoleRunner&version=3.5.0
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Debug");
//////////////////////////////////////////////////////////////////////
// SET ERROR LEVELS
//////////////////////////////////////////////////////////////////////
var ErrorDetail = new List<string>();
//////////////////////////////////////////////////////////////////////
// SET PACKAGE VERSION
//////////////////////////////////////////////////////////////////////
var version = "3.7.0";
var modifier = "";
var isAppveyor = BuildSystem.IsRunningOnAppVeyor;
var dbgSuffix = configuration == "Debug" ? "-dbg" : "";
var packageVersion = version + modifier + dbgSuffix;
//////////////////////////////////////////////////////////////////////
// SUPPORTED FRAMEWORKS
//////////////////////////////////////////////////////////////////////
var WindowsFrameworks = new string[] {
"net-4.5", "net-4.0", "net-3.5", "net-2.0", "netstandard16", "portable" };
var LinuxFrameworks = new string[] {
"net-4.5", "net-4.0", "net-3.5", "net-2.0" };
var AllFrameworks = IsRunningOnWindows() ? WindowsFrameworks : LinuxFrameworks;
//////////////////////////////////////////////////////////////////////
// DEFINE RUN CONSTANTS
//////////////////////////////////////////////////////////////////////
var PROJECT_DIR = Context.Environment.WorkingDirectory.FullPath + "/";
var PACKAGE_DIR = PROJECT_DIR + "package/";
var BIN_DIR = PROJECT_DIR + "bin/" + configuration + "/";
var IMAGE_DIR = PROJECT_DIR + "images/";
var SOLUTION_FILE = IsRunningOnWindows()
? "./nunit.sln"
: "./nunit.linux.sln";
// Package sources for nuget restore
var PACKAGE_SOURCE = new string[]
{
"https://www.nuget.org/api/v2",
"https://www.myget.org/F/nunit/api/v2"
};
// Test Runners
var NUNITLITE_RUNNER = "nunitlite-runner.exe";
// Test Assemblies
var FRAMEWORK_TESTS = "nunit.framework.tests.dll";
var EXECUTABLE_NUNITLITE_TESTS = "nunitlite.tests.exe";
// Packages
var ZIP_PACKAGE = PACKAGE_DIR + "NUnit.Framework-" + packageVersion + ".zip";
bool isDotNetCoreInstalled = false;
var packages = new string[]{
"src/NUnitFramework/framework/packages.config",
"src/NUnitFramework/nunitlite/packages.config",
"src/NUnitFramework/nunitlite.tests/packages.config",
"src/NUnitFramework/testdata/packages.config",
"src/NUnitFramework/tests/packages.config",
};
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
Information("Building version {0} of NUnit.", packageVersion);
isDotNetCoreInstalled = CheckIfDotNetCoreInstalled();
});
//////////////////////////////////////////////////////////////////////
// CLEAN
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Description("Deletes all files in the BIN directory")
.Does(() =>
{
CleanDirectory(BIN_DIR);
});
//////////////////////////////////////////////////////////////////////
// INITIALIZE FOR BUILD
//////////////////////////////////////////////////////////////////////
Task("InitializeBuild")
.Description("Initializes the build")
.Does(() =>
{
foreach(var package in packages)
{
Information("Restoring NuGet package " + package);
NuGetRestore(package, new NuGetRestoreSettings
{
PackagesDirectory = "./packages/",
Source = PACKAGE_SOURCE
});
}
if(isDotNetCoreInstalled)
{
Information("Restoring .NET Core packages");
StartProcess("dotnet", new ProcessSettings
{
Arguments = "restore"
});
}
if (isAppveyor)
{
var tag = AppVeyor.Environment.Repository.Tag;
if (tag.IsTag)
{
packageVersion = tag.Name;
}
else
{
var buildNumber = AppVeyor.Environment.Build.Number.ToString("00000");
var branch = AppVeyor.Environment.Repository.Branch;
var isPullRequest = AppVeyor.Environment.PullRequest.IsPullRequest;
if (branch == "master" && !isPullRequest)
{
packageVersion = version + "-dev-" + buildNumber + dbgSuffix;
}
else
{
var suffix = "-ci-" + buildNumber + dbgSuffix;
if (isPullRequest)
suffix += "-pr-" + AppVeyor.Environment.PullRequest.Number;
else if (AppVeyor.Environment.Repository.Branch.StartsWith("release", StringComparison.OrdinalIgnoreCase))
suffix += "-pre-" + buildNumber;
else
suffix += "-" + branch;
// Nuget limits "special version part" to 20 chars. Add one for the hyphen.
if (suffix.Length > 21)
suffix = suffix.Substring(0, 21);
packageVersion = version + suffix;
}
}
AppVeyor.UpdateBuildVersion(packageVersion);
}
});
//////////////////////////////////////////////////////////////////////
// BUILD FRAMEWORKS
//////////////////////////////////////////////////////////////////////
Task("Build45")
.Description("Builds the .NET 4.5 version of the framework")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-4.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-4.5.csproj", configuration);
});
Task("Build40")
.Description("Builds the .NET 4.0 version of the framework")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-4.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-4.0.csproj", configuration);
});
Task("Build35")
.Description("Builds the .NET 3.5 version of the framework")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-3.5.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-3.5.csproj", configuration);
});
Task("Build20")
.Description("Builds the .NET 2.0 version of the framework")
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/slow-tests/slow-nunit-tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-2.0.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-2.0.csproj", configuration);
});
Task("BuildNetStandard")
.Description("Builds the .NET Standard version of the framework")
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
if(!isDotNetCoreInstalled)
{
Warning(".NET Standard was not built because .NET Core SDK is not installed");
return;
}
BuildProject("src/NUnitFramework/framework/nunit.framework-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-netstandard.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-netstandard.csproj", configuration);
});
Task("BuildPortable")
.Description("Builds the PCL version of the framework")
.WithCriteria(IsRunningOnWindows())
.Does(() =>
{
BuildProject("src/NUnitFramework/framework/nunit.framework-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite/nunitlite-portable.csproj", configuration);
BuildProject("src/NUnitFramework/mock-assembly/mock-assembly-portable.csproj", configuration);
BuildProject("src/NUnitFramework/testdata/nunit.testdata-portable.csproj", configuration);
BuildProject("src/NUnitFramework/tests/nunit.framework.tests-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite.tests/nunitlite.tests-portable.csproj", configuration);
BuildProject("src/NUnitFramework/nunitlite-runner/nunitlite-runner-portable.csproj", configuration);
});
//////////////////////////////////////////////////////////////////////
// TEST
//////////////////////////////////////////////////////////////////////
Task("CheckForError")
.Description("Checks for errors running the test suites")
.Does(() => CheckForError(ref ErrorDetail));
//////////////////////////////////////////////////////////////////////
// TEST FRAMEWORK
//////////////////////////////////////////////////////////////////////
Task("Test45")
.Description("Tests the .NET 4.5 version of the framework")
.IsDependentOn("Build45")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-4.5";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test40")
.Description("Tests the .NET 4.0 version of the framework")
.IsDependentOn("Build40")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-4.0";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test35")
.Description("Tests the .NET 3.5 version of the framework")
.IsDependentOn("Build35")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-3.5";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("Test20")
.Description("Tests the .NET 2.0 version of the framework")
.IsDependentOn("Build20")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "net-2.0";
var dir = BIN_DIR + runtime + "/";
RunNUnitTests(dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("TestNetStandard")
.Description("Tests the .NET Standard version of the framework")
.WithCriteria(IsRunningOnWindows())
.IsDependentOn("BuildNetStandard")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
if(!isDotNetCoreInstalled)
{
Warning(".NET Standard was not tested because .NET Core SDK is not installed");
return;
}
var runtime = "netstandard16";
var dir = BIN_DIR + runtime + "/";
RunDotnetCoreTests(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunDotnetCoreTests(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
Task("TestPortable")
.Description("Tests the PCL version of the framework")
.WithCriteria(IsRunningOnWindows())
.IsDependentOn("BuildPortable")
.OnError(exception => { ErrorDetail.Add(exception.Message); })
.Does(() =>
{
var runtime = "portable";
var dir = BIN_DIR + runtime + "/";
RunTest(dir + NUNITLITE_RUNNER, dir, FRAMEWORK_TESTS, runtime, ref ErrorDetail);
RunTest(dir + EXECUTABLE_NUNITLITE_TESTS, dir, runtime, ref ErrorDetail);
});
//////////////////////////////////////////////////////////////////////
// PACKAGE
//////////////////////////////////////////////////////////////////////
var RootFiles = new FilePath[]
{
"LICENSE.txt",
"NOTICES.txt",
"CHANGES.txt"
};
// Not all of these are present in every framework
// The Microsoft and System assemblies are part of the BCL
// used by the .NET 4.0 framework. 4.0 tests will not run without them.
// NUnit.System.Linq is only present for the .NET 2.0 build.
var FrameworkFiles = new FilePath[]
{
"mock-assembly.dll",
"mock-assembly.exe",
"nunit.framework.dll",
"nunit.framework.xml",
"NUnit.System.Linq.dll",
"nunit.framework.tests.dll",
"nunit.testdata.dll",
"nunitlite.dll",
"nunitlite.tests.exe",
"nunitlite.tests.dll",
"slow-nunit-tests.dll",
"nunitlite-runner.exe",
"Microsoft.Threading.Tasks.dll",
"Microsoft.Threading.Tasks.Extensions.Desktop.dll",
"Microsoft.Threading.Tasks.Extensions.dll",
"System.IO.dll",
"System.Runtime.dll",
"System.Threading.Tasks.dll"
};
Task("CreateImage")
.Description("Copies all files into the image directory")
.Does(() =>
{
var currentImageDir = IMAGE_DIR + "NUnit-" + packageVersion + "/";
var imageBinDir = currentImageDir + "bin/";
CleanDirectory(currentImageDir);
CopyFiles(RootFiles, currentImageDir);
CreateDirectory(imageBinDir);
Information("Created directory " + imageBinDir);
foreach (var runtime in AllFrameworks)
{
var targetDir = imageBinDir + Directory(runtime);
var sourceDir = BIN_DIR + Directory(runtime);
CreateDirectory(targetDir);
foreach (FilePath file in FrameworkFiles)
{
var sourcePath = sourceDir + "/" + file;
if (FileExists(sourcePath))
CopyFileToDirectory(sourcePath, targetDir);
}
}
});
Task("PackageFramework")
.Description("Creates NuGet packages of the framework")
.IsDependentOn("CreateImage")
.Does(() =>
{
var currentImageDir = IMAGE_DIR + "NUnit-" + packageVersion + "/";
CreateDirectory(PACKAGE_DIR);
NuGetPack("nuget/framework/nunit.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
NuGetPack("nuget/nunitlite/nunitlite.nuspec", new NuGetPackSettings()
{
Version = packageVersion,
BasePath = currentImageDir,
OutputDirectory = PACKAGE_DIR
});
});
Task("PackageZip")
.Description("Creates a ZIP file of the framework")
.IsDependentOn("CreateImage")
.Does(() =>
{
CreateDirectory(PACKAGE_DIR);
var currentImageDir = IMAGE_DIR + "NUnit-" + packageVersion + "/";
var zipFiles =
GetFiles(currentImageDir + "*.*") +
GetFiles(currentImageDir + "bin/net-2.0/*.*") +
GetFiles(currentImageDir + "bin/net-3.5/*.*") +
GetFiles(currentImageDir + "bin/net-4.0/*.*") +
GetFiles(currentImageDir + "bin/net-4.5/*.*") +
GetFiles(currentImageDir + "bin/netstandard16/*.*") +
GetFiles(currentImageDir + "bin/portable/*.*");
Zip(currentImageDir, File(ZIP_PACKAGE), zipFiles);
});
//////////////////////////////////////////////////////////////////////
// UPLOAD ARTIFACTS
//////////////////////////////////////////////////////////////////////
Task("UploadArtifacts")
.Description("Uploads artifacts to AppVeyor")
.IsDependentOn("Package")
.Does(() =>
{
UploadArtifacts(PACKAGE_DIR, "*.nupkg");
UploadArtifacts(PACKAGE_DIR, "*.zip");
});
//////////////////////////////////////////////////////////////////////
// SETUP AND TEARDOWN TASKS
//////////////////////////////////////////////////////////////////////
Teardown(context => CheckForError(ref ErrorDetail));
//////////////////////////////////////////////////////////////////////
// HELPER METHODS - GENERAL
//////////////////////////////////////////////////////////////////////
bool CheckIfDotNetCoreInstalled()
{
try
{
Information("Checking if .NET Core SDK is installed");
StartProcess("dotnet", new ProcessSettings
{
Arguments = "--version"
});
}
catch(Exception)
{
Warning(".NET Core SDK is not installed. It can be installed from https://www.microsoft.com/net/core");
return false;
}
return true;
}
void RunGitCommand(string arguments)
{
StartProcess("git", new ProcessSettings()
{
Arguments = arguments
});
}
void UploadArtifacts(string packageDir, string searchPattern)
{
foreach(var zip in System.IO.Directory.GetFiles(packageDir, searchPattern))
AppVeyor.UploadArtifact(zip);
}
void CheckForError(ref List<string> errorDetail)
{
if(errorDetail.Count != 0)
{
var copyError = new List<string>();
copyError = errorDetail.Select(s => s).ToList();
errorDetail.Clear();
throw new Exception("One or more unit tests failed, breaking the build.\n"
+ copyError.Aggregate((x,y) => x + "\n" + y));
}
}
//////////////////////////////////////////////////////////////////////
// HELPER METHODS - BUILD
//////////////////////////////////////////////////////////////////////
void BuildProject(string projectPath, string configuration)
{
DotNetBuild(projectPath, settings =>
settings.SetConfiguration(configuration)
.SetVerbosity(Verbosity.Minimal)
.WithTarget("Build")
.WithProperty("NodeReuse", "false")
.WithProperty("Platform", "AnyCPU"));
}
//////////////////////////////////////////////////////////////////////
// HELPER METHODS - TEST
//////////////////////////////////////////////////////////////////////
void RunNUnitTests(DirectoryPath workingDir, string testAssembly, string framework, ref List<string> errorDetail)
{
try
{
var path = workingDir.CombineWithFilePath(new FilePath(testAssembly));
var settings = new NUnit3Settings();
if(!IsRunningOnWindows())
settings.Process = NUnit3ProcessOption.InProcess;
NUnit3(path.ToString(), settings);
}
catch(CakeException ce)
{
errorDetail.Add(string.Format("{0}: {1}", framework, ce.Message));
}
}
void RunTest(FilePath exePath, DirectoryPath workingDir, string framework, ref List<string> errorDetail)
{
RunTest(exePath, workingDir, null, framework, ref errorDetail);
}
void RunTest(FilePath exePath, DirectoryPath workingDir, string arguments, string framework, ref List<string> errorDetail)
{
int rc = StartProcess(
MakeAbsolute(exePath),
new ProcessSettings()
{
Arguments = arguments,
WorkingDirectory = workingDir
});
if (rc > 0)
errorDetail.Add(string.Format("{0}: {1} tests failed", framework, rc));
else if (rc < 0)
errorDetail.Add(string.Format("{0} returned rc = {1}", exePath, rc));
}
void RunDotnetCoreTests(FilePath exePath, DirectoryPath workingDir, string framework, ref List<string> errorDetail)
{
RunDotnetCoreTests(exePath, workingDir, null, framework, ref errorDetail);
}
void RunDotnetCoreTests(FilePath exePath, DirectoryPath workingDir, string arguments, string framework, ref List<string> errorDetail)
{
int rc = StartProcess(
"dotnet",
new ProcessSettings()
{
Arguments = exePath + " " + arguments,
WorkingDirectory = workingDir
});
if (rc > 0)
errorDetail.Add(string.Format("{0}: {1} tests failed", framework, rc));
else if (rc < 0)
errorDetail.Add(string.Format("{0} returned rc = {1}", exePath, rc));
}
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Rebuild")
.Description("Rebuilds all versions of the framework")
.IsDependentOn("Clean")
.IsDependentOn("Build");
Task("Build")
.Description("Builds all versions of the framework")
.IsDependentOn("InitializeBuild")
.IsDependentOn("Build45")
.IsDependentOn("Build40")
.IsDependentOn("Build35")
.IsDependentOn("Build20")
.IsDependentOn("BuildNetStandard")
// NOTE: The following tasks use Criteria and will be skipped on Linux
.IsDependentOn("BuildPortable");
Task("Test")
.Description("Builds and tests all versions of the framework")
.IsDependentOn("Build")
.IsDependentOn("Test45")
.IsDependentOn("Test40")
.IsDependentOn("Test35")
.IsDependentOn("Test20")
.IsDependentOn("TestNetStandard")
// NOTE: The following tasks use Criteria and will be skipped on Linux
.IsDependentOn("TestPortable");
Task("Package")
.Description("Packages all versions of the framework")
.IsDependentOn("CheckForError")
.IsDependentOn("PackageFramework")
.IsDependentOn("PackageZip");
Task("Appveyor")
.Description("Builds, tests and packages on AppVeyor")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Package")
.IsDependentOn("UploadArtifacts");
Task("Travis")
.Description("Builds and tests on Travis")
.IsDependentOn("Build")
.IsDependentOn("Test");
Task("Default")
.Description("Builds all versions of the framework")
.IsDependentOn("Build");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);