forked from cake-build/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
288 lines (250 loc) · 10.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#tool "nuget:https://api.nuget.org/v3/index.json?package=KuduSync.NET&version=1.3.1"
#tool "nuget:https://api.nuget.org/v3/index.json?package=Wyam&version=1.5.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Git&version=0.16.1"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Kudu&version=0.5.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Wyam&version=1.5.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Yaml&version=2.0.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=YamlDotNet&version=4.2.1"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Octokit&version=0.26.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Polly&version=6.1.0"
using Octokit;
using Polly;
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
//////////////////////////////////////////////////////////////////////
// PREPARATION
//////////////////////////////////////////////////////////////////////
// Define variables
var isRunningOnAppVeyor = AppVeyor.IsRunningOnAppVeyor;
var isPullRequest = AppVeyor.Environment.PullRequest.IsPullRequest;
var accessToken = EnvironmentVariable("git_access_token");
var deployRemote = EnvironmentVariable("git_deploy_remote");
var currentBranch = isRunningOnAppVeyor ? BuildSystem.AppVeyor.Environment.Repository.Branch : GitBranchCurrent("./").FriendlyName;
var deployBranch = string.Concat("publish/", currentBranch);
// Define directories.
var releaseDir = Directory("./release");
var sourceDir = releaseDir + Directory("repo");
var addinDir = releaseDir + Directory("addins");
var outputPath = MakeAbsolute(Directory("./output"));
var rootPublishFolder = MakeAbsolute(Directory("publish"));
// Definitions
class AddinSpec
{
public string Name { get; set; }
public string NuGet { get; set; }
public bool Prerelease { get; set; }
public List<string> Assemblies { get; set; }
public string Repository { get; set; }
public string Author { get; set; }
public string Description { get; set; }
public List<string> Categories { get; set; }
}
// Variables
List<AddinSpec> addinSpecs = new List<AddinSpec>();
//////////////////////////////////////////////////////////////////////
// SETUP
//////////////////////////////////////////////////////////////////////
Setup(ctx =>
{
// Executed BEFORE the first task.
Information("Building branch {0} ({1})...", currentBranch, deployBranch);
});
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("CleanSource")
.Does(() =>
{
if(DirectoryExists(sourceDir))
{
CleanDirectory(sourceDir);
DeleteDirectory(sourceDir, new DeleteDirectorySettings {
Recursive = true,
Force = true
});
}
foreach(var cakeDir in GetDirectories(releaseDir.Path.FullPath + "/cake*"))
{
DeleteDirectory(cakeDir, new DeleteDirectorySettings {
Recursive = true,
Force = true
});
}
});
Task("GetSource")
.IsDependentOn("CleanSource")
.Does(() =>
{
GitHubClient github = new GitHubClient(new ProductHeaderValue("CakeDocs"));
if (!string.IsNullOrEmpty(accessToken))
{
github.Credentials = new Credentials(accessToken);
}
// The GitHub releases API returns Not Found if all are pre-release, so need workaround below
//Release release = github.Repository.Release.GetLatest("cake-build", "cake").Result;
Release release = github.Repository.Release.GetAll("cake-build", "cake").Result.First();
FilePath releaseZip = DownloadFile(release.ZipballUrl);
Unzip(releaseZip, releaseDir);
// Need to rename the container directory in the zip file to something consistent
var containerDir = GetDirectories(releaseDir.Path.FullPath + "/*").First(x => x.GetDirectoryName().StartsWith("cake"));
MoveDirectory(containerDir, sourceDir);
});
Task("CleanAddinPackages")
.Does(() =>
{
CleanDirectory(addinDir);
});
Task("GetAddinSpecs")
.Does(() =>
{
var addinSpecFiles = GetFiles("./addins/*.yml");
addinSpecs
.AddRange(addinSpecFiles
.Select(x =>
{
Verbose("Deserializing addin YAML from " + x);
return DeserializeYamlFromFile<AddinSpec>(x);
})
);
});
Task("GetAddinPackages")
.IsDependentOn("CleanAddinPackages")
.IsDependentOn("GetAddinSpecs")
.Does(() =>
{
var retryPolicy = Policy
.Handle<Exception>()
.WaitAndRetry(5, retryAttempt =>
TimeSpan.FromSeconds(Math.Pow(2, retryAttempt))
);
DirectoryPath packagesPath = MakeAbsolute(Directory("./output")).Combine("packages");
Parallel.ForEach(
addinSpecs.Where(x => !string.IsNullOrEmpty(x.NuGet)),
addinSpec => {
Information("Installing addin package " + addinSpec.NuGet);
retryPolicy.Execute(
() => NuGetInstall(addinSpec.NuGet,
new NuGetInstallSettings
{
OutputDirectory = addinDir,
Prerelease = addinSpec.Prerelease,
Verbosity = NuGetVerbosity.Quiet,
Source = new [] { "https://api.nuget.org/v3/index.json" },
NoCache = true,
EnvironmentVariables = new Dictionary<string, string>{
{"EnableNuGetPackageRestore", "true"},
{"NUGET_XMLDOC_MODE", "None"},
{"NUGET_PACKAGES", packagesPath.FullPath},
{"NUGET_EXE", Context.Tools.Resolve("nuget.exe").FullPath }
}
})
);
});
});
Task("Build")
.IsDependentOn("GetArtifacts")
.Does(() =>
{
Wyam(new WyamSettings
{
Recipe = "Docs",
Theme = "Samson",
UpdatePackages = true,
Settings = new Dictionary<string, object>
{
{ "AssemblyFiles", addinSpecs.Where(x => x.Assemblies != null).SelectMany(x => x.Assemblies).Select(x => "../release/addins" + x) }
}
});
});
// Does not download artifacts (run Build or GetArtifacts target first)
Task("Preview")
.IsDependentOn("GetAddinSpecs")
.Does(() =>
{
Wyam(new WyamSettings
{
Recipe = "Docs",
Theme = "Samson",
UpdatePackages = true,
Preview = true,
Watch = true,
Settings = new Dictionary<string, object>
{
{ "AssemblyFiles", addinSpecs.Where(x => x.Assemblies != null).SelectMany(x => x.Assemblies).Select(x => "../release/addins" + x) }
}
});
});
// Assumes Wyam source is local and at ../Wyam
Task("Debug")
.Does(() =>
{
StartProcess("../Wyam/src/clients/Wyam/bin/Debug/net462/wyam.exe",
"-a \"../Wyam/tests/integration/Wyam.Examples.Tests/bin/Debug/net462/**/*.dll\" -r \"docs -i\" -t \"../Wyam/themes/Docs/Samson\" -p");
});
// Does not download artifacts (run Build or GetArtifacts target first)
Task("Debug-Addins")
.IsDependentOn("GetAddinSpecs")
.Does(() =>
{
StartProcess("../Wyam/src/clients/Wyam/bin/Debug/net462/wyam.exe",
"-a \"../Wyam/tests/integration/Wyam.Examples.Tests/bin/Debug/net462/**/*.dll\" -r \"docs -i\" -t \"../Wyam/themes/Docs/Samson\" -p --attach"
+ " --setting \"AssemblyFiles=["
+ String.Join(",", addinSpecs.Where(x => x.Assemblies != null).SelectMany(x => x.Assemblies).Select(x => "../release/addins" + x))
+ "]\"");
});
Task("Copy-Bootstrapper-Download")
.Does(()=>
{
CopyDirectory("./download", outputPath.Combine("download"));
CopyDirectory("./download/bootstrapper", outputPath.Combine("bootstrapper"));
});
Task("Deploy")
.WithCriteria(isRunningOnAppVeyor)
.WithCriteria(!isPullRequest)
.WithCriteria(!string.IsNullOrEmpty(accessToken))
.WithCriteria(!string.IsNullOrEmpty(deployRemote))
.WithCriteria(!string.IsNullOrEmpty(deployBranch))
.IsDependentOn("Build")
.IsDependentOn("Copy-Bootstrapper-Download")
.Does(() =>
{
EnsureDirectoryExists(rootPublishFolder);
var sourceCommit = GitLogTip("./");
var publishFolder = rootPublishFolder.Combine(DateTime.Now.ToString("yyyyMMdd_HHmmss"));
Information("Getting publish branch {0}...", deployBranch);
GitClone(deployRemote, publishFolder, new GitCloneSettings{ BranchName = deployBranch });
Information("Sync output files...");
Kudu.Sync(outputPath, publishFolder, new KuduSyncSettings {
PathsToIgnore = new []{ ".git", "appveyor.yml" }
});
Information("Stage all changes...");
GitAddAll(publishFolder);
Information("Commit all changes...");
GitCommit(
publishFolder,
sourceCommit.Committer.Name,
sourceCommit.Committer.Email,
string.Format("AppVeyor Publish: {0}\r\n{1}", sourceCommit.Sha, sourceCommit.Message)
);
Information("Pushing all changes...");
GitPush(publishFolder, accessToken, "x-oauth-basic", deployBranch);
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Build");
Task("GetArtifacts")
.IsDependentOn("GetSource")
.IsDependentOn("GetAddinPackages");
Task("AppVeyor")
.IsDependentOn(isPullRequest ? "Build" : "Deploy");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
if (!StringComparer.OrdinalIgnoreCase.Equals(target, "Deploy"))
{
RunTarget(target);
}