-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.cake
166 lines (137 loc) · 4.32 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#addin nuget:?package=Cake.DoInDirectory&version=6.0.0
#addin nuget:?package=Cake.Npm&version=4.0.0
#nullable enable
// Arguments
var target = Argument("t", "default");
var configuration = Argument("c", "Debug");
// Environment
var githubToken = EnvironmentVariable("GITHUB_TOKEN");
var nugetToken = EnvironmentVariable("NUGET_TOKEN");
// Paths
var root = Context.Environment.WorkingDirectory;
var rupturaProj = root.CombineWithFilePath("ruptura.proj");
var doc = root.Combine("doc");
var trimmingCsproj = root.Combine("src").Combine("trimming").CombineWithFilePath("trimming.csproj");
var @out = root.Combine("out");
var outLogDotnet = @out.Combine("log").Combine("dotnet");
var outPkg = @out.Combine("pkg");
// Globs
var githubGlob = new GlobPattern(outPkg.Combine("debug").CombineWithFilePath("*.nupkg").FullPath);
var nugetGlob = new GlobPattern(outPkg.Combine("release").CombineWithFilePath("*.nupkg").FullPath);
// Utilities
DotNetMSBuildSettings ConfigureMSBuild(string target)
{
var prefix = $"{target}_{Environment.UserName}_{Environment.MachineName}_";
var time = DateTime.Now;
string name;
do
{
name = $"{prefix}{time:yyyy-MM-dd_HH_mm_ss}.binlog";
time = time.AddSeconds(1);
}
while (System.IO.File.Exists(name));
return new()
{
// TODO: https://github.com/dotnet/msbuild/issues/6756
NoLogo = true,
BinaryLogger = new()
{
Enabled = true,
FileName = outLogDotnet.CombineWithFilePath(name).FullPath,
},
ConsoleLoggerSettings = new()
{
NoSummary = true,
},
ArgumentCustomization = args => args.Append("-ds:false"),
};
}
// Tasks
Task("default")
.IsDependentOn("build")
.IsDependentOn("pack");
Task("default-editor")
.IsDependentOn("build")
.IsDependentOn("pack");
Task("restore-core")
.Does(() =>
DotNetRestore(
rupturaProj.FullPath,
new()
{
MSBuildSettings = ConfigureMSBuild("restore"),
}));
Task("restore-doc")
.Does(() => DoInDirectory(doc, () => NpmInstall()));
Task("restore")
.IsDependentOn("restore-core")
.IsDependentOn("restore-doc");
Task("build-core")
.IsDependentOn("restore-core")
.Does(() =>
DotNetBuild(
rupturaProj.FullPath,
new()
{
MSBuildSettings = ConfigureMSBuild("build"),
Configuration = configuration,
NoRestore = true,
}));
Task("build-trimming")
.IsDependentOn("build-core")
.Does(() =>
DotNetPublish(
trimmingCsproj.FullPath,
new()
{
MSBuildSettings = ConfigureMSBuild("publish"),
Configuration = configuration,
NoBuild = true,
}));
Task("build-doc")
.IsDependentOn("restore-doc")
.Does(() => DoInDirectory(doc, () => NpmRunScript("build")));
Task("build")
.IsDependentOn("build-trimming")
.IsDependentOn("build-doc");
Task("pack-core")
.IsDependentOn("build-core")
.Does(() =>
DotNetPack(
rupturaProj.FullPath,
new()
{
MSBuildSettings = ConfigureMSBuild("pack"),
Configuration = configuration,
NoBuild = true,
}));
Task("pack")
.IsDependentOn("pack-core");
Task("upload-core-github")
.WithCriteria(BuildSystem.GitHubActions.Environment.Workflow.Ref == "refs/heads/master")
.WithCriteria(configuration == "Debug")
.IsDependentOn("pack-core")
.Does(() =>
DotNetTool(
null,
"gpr push",
new ProcessArgumentBuilder()
.AppendQuoted(githubGlob)
.AppendSwitchQuotedSecret("-k", githubToken)));
Task("upload-core-nuget")
.WithCriteria(BuildSystem.GitHubActions.Environment.Workflow.Ref.StartsWith("refs/tags/v"))
.WithCriteria(configuration == "Release")
.IsDependentOn("pack-core")
.Does(() =>
{
foreach (var pkg in GetFiles(nugetGlob))
DotNetNuGetPush(
pkg,
new()
{
Source = "https://api.nuget.org/v3/index.json",
ApiKey = nugetToken,
SkipDuplicate = true,
});
});
RunTarget(target);