-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pull-request.cake
85 lines (71 loc) · 2.55 KB
/
pull-request.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
#tool "dotnet:?package=GitVersion.Tool&version=5.10.3"
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
string version = String.Empty;
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Does(() => {
DotNetClean("./ApiTemplatePack.sln");
});
Task("Restore")
.IsDependentOn("Clean")
.Description("Restoring the solution dependencies")
.Does(() => {
var projects = GetFiles("./**/*.csproj");
foreach(var project in projects )
{
Information($"Building { project.ToString()}");
DotNetRestore(project.ToString());
}
});
Task("Version")
.Does(() => {
var result = GitVersion(new GitVersionSettings {
UpdateAssemblyInfo = true
});
version = result.NuGetVersionV2;
Information($"Version: { version }");
});
Task("Build")
.IsDependentOn("Version")
.Does(() => {
var buildSettings = new DotNetBuildSettings {
Configuration = configuration,
MSBuildSettings = new DotNetMSBuildSettings()
.WithProperty("Version", version)
.WithProperty("AssemblyVersion", version)
.WithProperty("FileVersion", version)
};
var projects = GetFiles("./**/*.csproj");
foreach(var project in projects )
{
Information($"Building {project.ToString()}");
DotNetBuild(project.ToString(),buildSettings);
}
});
Task("Test")
.IsDependentOn("Build")
.Does(() => {
var testSettings = new DotNetTestSettings {
Configuration = configuration,
NoBuild = true,
};
var projects = GetFiles("./tests/*/*.csproj");
foreach(var project in projects )
{
Information($"Running Tests : { project.ToString()}");
DotNetTest(project.ToString(), testSettings );
}
});
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("Version")
.IsDependentOn("Build")
.IsDependentOn("Test");
RunTarget(target);