forked from RehanSaeed/Serilog.Exceptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
93 lines (84 loc) · 2.64 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
var target = Argument("Target", "Default");
var configuration =
HasArgument("Configuration") ? Argument<string>("Configuration") :
EnvironmentVariable("Configuration") != null ? EnvironmentVariable("Configuration") :
"Release";
var preReleaseSuffix =
HasArgument("PreReleaseSuffix") ? Argument<string>("PreReleaseSuffix") :
(AppVeyor.IsRunningOnAppVeyor && AppVeyor.Environment.Repository.Tag.IsTag) ? null :
EnvironmentVariable("PreReleaseSuffix") != null ? EnvironmentVariable("PreReleaseSuffix") :
"beta";
var buildNumber =
HasArgument("BuildNumber") ? Argument<int>("BuildNumber") :
AppVeyor.IsRunningOnAppVeyor ? AppVeyor.Environment.Build.Number :
TravisCI.IsRunningOnTravisCI ? TravisCI.Environment.Build.BuildNumber :
EnvironmentVariable("BuildNumber") != null ? int.Parse(EnvironmentVariable("BuildNumber")) :
0;
var artifactsDirectory = Directory("./Artifacts");
Task("Clean")
.Does(() =>
{
CleanDirectory(artifactsDirectory);
});
Task("Restore")
.IsDependentOn("Clean")
.Does(() =>
{
DotNetCoreRestore();
});
Task("Build")
.IsDependentOn("Restore")
.Does(() =>
{
foreach(var project in GetFiles("./**/*.xproj"))
{
DotNetCoreBuild(
project.GetDirectory().FullPath,
new DotNetCoreBuildSettings()
{
Configuration = configuration
});
}
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
foreach(var project in GetFiles("./**/*.Test.xproj"))
{
DotNetCoreTest(
project.GetDirectory().FullPath,
new DotNetCoreTestSettings()
{
ArgumentCustomization = args => args
.Append("-xml")
.Append(artifactsDirectory.Path.CombineWithFilePath(project.GetFilenameWithoutExtension()).FullPath + ".xml"),
Configuration = configuration,
NoBuild = true
});
}
});
Task("Pack")
.IsDependentOn("Test")
.Does(() =>
{
string versionSuffix = null;
if (!string.IsNullOrEmpty(preReleaseSuffix))
{
versionSuffix = preReleaseSuffix + "-" + buildNumber.ToString("D4");
}
foreach (var project in GetFiles("./Source/**/Serilog.Exceptions.xproj"))
{
DotNetCorePack(
project.GetDirectory().FullPath,
new DotNetCorePackSettings()
{
Configuration = configuration,
OutputDirectory = artifactsDirectory,
VersionSuffix = versionSuffix
});
}
});
Task("Default")
.IsDependentOn("Pack");
RunTarget(target);