-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.cake
83 lines (71 loc) · 2.04 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
#tool "nuget:?package=xunit.runner.console"
var target = Argument("target", "Default");
string configuration;
var appVeyorBranch = EnvironmentVariable("APPVEYOR_REPO_BRANCH");
switch (appVeyorBranch)
{
case "master":
configuration = "Release";
break;
case "development":
configuration = "Debug";
break;
default:
configuration = "Release";
break;
}
var artifactsDir = Directory("./artifacts");
var solution = "./AnimeListBot.sln";
Task("Clean")
.Does(() =>
{
CleanDirectory(artifactsDir);
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
NuGetRestore(solution);
});
Task("Build")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
MSBuild(solution, settings =>
settings.SetConfiguration(configuration)
.WithProperty("OutDir", "../" + artifactsDir)
.WithProperty("TreatWarningsAsErrors", "True")
.SetVerbosity(Verbosity.Minimal)
.AddFileLogger()
);
});
Task("Run-Tests")
.IsDependentOn("Build")
.Does(() =>
{
XUnit2("./tests/**/bin/" + configuration + "/*.Tests.dll", new XUnit2Settings
{
// If needed:
// Parallelism = ParallelismOption.None
// or similar.
});
});
Task("Package")
.IsDependentOn("Run-Tests")
.Does(() =>
{
MSBuild("AnimeListBot/AnimeListBot.csproj", settings =>
settings.SetConfiguration(configuration)
.WithProperty("OutDir", "../" + artifactsDir)
.WithProperty("DeployOnBuild", "true")
.WithProperty("WebPublishMethod", "FolderProfile")
.WithProperty("PackageAsSingleFile", "true")
.WithProperty("SkipInvalidConfigurations", "true")
.WithProperty("TreatWarningsAsErrors", "True")
.SetVerbosity(Verbosity.Minimal)
.WithProperty("PackageLocation", "../" + artifactsDir)
);
});
Task("Default")
.IsDependentOn("Package");
RunTarget(target);