forked from Unleash/unleash-client-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
106 lines (88 loc) · 2.5 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
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0
#tool "nuget:?package=GitVersion.CommandLine"
#addin "nuget:?package=Cake.Json&version=6.0.1"
#addin "nuget:?package=Newtonsoft.Json&version=12.0.2"
// #tool "nuget:?package=gitlink"
// ARGUMENTS
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var solutionPath = "./Unleash.sln";
var unleashProjectFile = "./src/Unleash/Unleash.csproj";
var buildDir = Directory("./src/Unleash/bin") + Directory(configuration);
var csTestsVersion = "v4.3.3";
var clientSpecificationTestsURL = "https://raw.githubusercontent.com/Unleash/client-specification/" + csTestsVersion + "/specifications/";
//
// TASKS
//
Task("Clean")
.Does(() =>
{
CleanDirectory(buildDir);
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
NuGetRestore(solutionPath);
});
Task("Version")
.Does(() =>
{
var versionInfo = GitVersion(new GitVersionSettings
{
OutputType = GitVersionOutput.Json
});
Console.WriteLine(SerializeJsonPretty(versionInfo));
var updatedProjectFile = System.IO.File.ReadAllText(unleashProjectFile)
.Replace("1.0.0", versionInfo.AssemblySemVer);
System.IO.File.WriteAllText(unleashProjectFile, updatedProjectFile);
});
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("Download-Client-Specifications")
.Does(() =>
{
var indexPath = File("./tests/Unleash.Tests/Integration/Data/index.json");
DownloadFile(clientSpecificationTestsURL + "index.json", indexPath);
foreach (var fileName in DeserializeJsonFromFile<string[]>(indexPath))
{
var filePath = File("./tests/Unleash.Tests/Integration/Data/" + fileName);
DownloadFile(clientSpecificationTestsURL + fileName, filePath);
}
});
Task("Run-Unit-Tests")
.IsDependentOn("Build")
.IsDependentOn("Download-Client-Specifications")
.Does(() =>
{
NUnit3("./tests/*.Tests/bin/" + configuration + "/*.Tests.dll", new NUnit3Settings {
NoResults = true
});
});
//
// TASK TARGETS
//
Task("Default")
.IsDependentOn("Run-Unit-Tests");
Task("AppVeyor")
.IsDependentOn("Version")
.IsDependentOn("Default");
//
// EXECUTION
//
RunTarget(target);