-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.cake
More file actions
128 lines (106 loc) · 3.16 KB
/
Copy pathbuild.cake
File metadata and controls
128 lines (106 loc) · 3.16 KB
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
#tool "nuget:?package=xunit.runner.console&version=2.3.1"
#addin "nuget:?package=NuGet.Core&version=2.14.0"
#addin nuget:?package=Cake.ArgumentHelpers
#addin "Cake.ExtendedNuGet"
using Cake.ExtendedNuGet;
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var projectName = "NullObject";
var solutionPath = "./" + projectName + ".sln";
var branch = Argument("branch", EnvironmentVariable("APPVEYOR_REPO_BRANCH"));
var isRelease = EnvironmentVariable("APPVEYOR_REPO_TAG") == "true";
var nugetSource = "https://www.nuget.org/api/v2/package/";
var nugetApiKey = EnvironmentVariable("nugetApiKey");
//////////////////////////////////////////////////////////////////////
// PREPARATION
//////////////////////////////////////////////////////////////////////
// Define directories.
var buildDir = Directory("./src/NullObject/bin") + Directory(configuration);
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Clean")
.Does(() =>
{
CleanDirectory(buildDir);
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
NuGetRestore(solutionPath);
});
Task("Build")
.IsDependentOn("Restore-NuGet-Packages")
.Does(() =>
{
if(IsRunningOnWindows())
{
// Use MSBuild
MSBuild(solutionPath, settings =>
settings.SetConfiguration(configuration));
}
else
{
// Use XBuild
XBuild(solutionPath, settings =>
settings.SetConfiguration(configuration));
}
});
Task("Tests")
.IsDependentOn("Build")
.Does(() =>
{
XUnit2("./test/**/bin/Release/*.Tests.dll",
new XUnit2Settings {
Parallelism = ParallelismOption.All,
HtmlReport = true,
NoAppDomain = true,
OutputDirectory = "./build"
});
});
Task("Pack")
.WithCriteria(() => branch == "master" )
.IsDependentOn("Tests")
.Does(() =>
{
Information("Publish Libraries!");
var code = 0;
code = StartProcess("dotnet", "pack " + solutionPath + " -c Release -o ../artifacts");
if(code != 0)
{
Error($"dotnet pack failed with code {code}");
}
});
Task("Deploy")
.WithCriteria(() => branch == "master" )
.IsDependentOn("Pack")
.Does(() =>
{
Information("Deploy Packages!");
var settings = new NuGetPushSettings {
Source = nugetSource,
ApiKey = nugetApiKey
};
var files = GetFiles("./src/artifacts/**/NullObject*.nupkg");
foreach(var file in files)
{
Information("Push package: {0}", file);
NuGetPush(file, settings);
}
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Build")
.IsDependentOn("Tests")
.IsDependentOn("Pack")
.IsDependentOn("Deploy");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);