This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.cake
86 lines (75 loc) · 1.77 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
var configuration = Argument("configuration", "Debug");
Task("Clean")
.Does(() =>
{
CleanDirectory("./artifacts/");
});
Task("Restore")
.Does(() =>
{
DotNetCoreRestore();
});
Task("Build")
.Does(() =>
{
DotNetCoreBuild("./src/**/project.json", new DotNetCoreBuildSettings
{
Configuration = configuration
});
});
Task("Pack")
.Does(() =>
{
var projects = GetFiles("./src/**/project.json");
Console.WriteLine("Packing {0} projects", projects.Count());
foreach (var project in projects)
{
DotNetCorePack(project.FullPath, new DotNetCorePackSettings
{
Configuration = configuration,
OutputDirectory = "./artifacts/"
});
}
Console.WriteLine("Creating meta package");
NuGetPack("./Stormpath.SDK.nuspec", new NuGetPackSettings
{
OutputDirectory = "./artifacts",
ArgumentCustomization = args => args.Append("-Exclude **\\*")
});
});
Task("Test")
.IsDependentOn("Restore")
.IsDependentOn("Build")
.Does(() =>
{
new List<string>
{
"Stormpath.SDK.JsonNetSerializer.Tests",
"Stormpath.SDK.RestSharpClient.Tests",
"Stormpath.SDK.Tests",
"Stormpath.SDK.Tests.Unit",
"Stormpath.SDK.Tests.Sanity"
}.ForEach(name =>
{
DotNetCoreTest("./test/" + name + "/project.json");
});
});
Task("IntegrationTest")
.Does(() =>
{
new List<string>
{
"Stormpath.SDK.Tests.CoreClr",
"Stormpath.SDK.Tests.Integration",
}.ForEach(name =>
{
DotNetCoreTest("./test/" + name + "/project.json");
});
});
Task("Default")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("Build")
.IsDependentOn("Pack");
var target = Argument("target", "Default");
RunTarget(target);