-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
73 lines (63 loc) · 1.66 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
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var nugetApiKey = EnvironmentVariable("NUGET_API_KEY");
var nugetApiUrl = EnvironmentVariable("NUGET_API_URL");
DirectoryPath artifactsDir = Directory("./artifacts/");
var solutionFile = File("./src/MSA.BuildingBlocks.sln");
Task("Clean")
.Does(() =>
{
CleanDirectory(artifactsDir);
CleanDirectories(GetDirectories("./**/obj") + GetDirectories("./**/bin"));
});
Task("Restore")
.IsDependentOn("Clean")
.Does(() =>
{
DotNetRestore(solutionFile);
});
Task("Build")
.IsDependentOn("Restore")
.Does(() =>
{
var settings = new DotNetBuildSettings
{
Configuration = configuration,
NoRestore = true,
NoLogo = true
};
DotNetBuild(solutionFile, settings);
});
Task("NuGetPack")
.IsDependentOn("Build")
.Does(() =>
{
DotNetPack(solutionFile, new DotNetCorePackSettings
{
Configuration = configuration,
NoRestore = true,
NoBuild = true,
NoLogo = true,
OutputDirectory = artifactsDir
});
});
Task("NuGetPush")
.IsDependentOn("NuGetPack")
.WithCriteria(!string.IsNullOrWhiteSpace(nugetApiUrl))
.WithCriteria(!string.IsNullOrWhiteSpace(nugetApiKey))
.Does(() =>
{
var packages = GetFiles(string.Concat(artifactsDir, "/", "*.nupkg"));
foreach(var package in packages)
{
DotNetNuGetPush(package.FullPath, new DotNetCoreNuGetPushSettings
{
Source = nugetApiUrl,
SkipDuplicate = true,
ApiKey = nugetApiKey
});
}
});
Task("Default")
.IsDependentOn("Build");
RunTarget(target);