forked from cake-build/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
246 lines (210 loc) · 7.73 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
#module nuget:?package=Cake.DotNetTool.Module&version=0.2.0
#tool "dotnet:https://api.nuget.org/v3/index.json?package=Wyam.Tool&version=2.2.8"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Wyam&version=2.2.8"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Yaml&version=3.0.0"
#addin "nuget:https://api.nuget.org/v3/index.json?package=YamlDotNet&version=5.2.1"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Octokit&version=0.32.0"
#load "nuget.cake"
using Octokit;
//////////////////////////////////////////////////////////////////////
// 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 zipFileName = "output.zip";
var deployCakeFileName = "deploy.cake";
// 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 site...");
});
//////////////////////////////////////////////////////////////////////
// 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( r =>r.PublishedAt.HasValue);
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(context =>
{
context.DownloadPackages(addinDir,
addinSpecs
.Where(x => !string.IsNullOrEmpty(x.NuGet))
.Select(x => x.NuGet)
.ToArray());
});
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 --attach");
});
// 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("ZipArtifacts")
.IsDependentOn("Build")
.IsDependentOn("Copy-Bootstrapper-Download")
.Does(() =>
{
Zip(outputPath, zipFileName);
});
Task("UploadArtifacts")
.IsDependentOn("ZipArtifacts")
.WithCriteria(BuildSystem.IsRunningOnAzurePipelinesHosted)
.Does(() =>
{
AzurePipelines.Commands.UploadArtifact("website", zipFileName, "website");
AzurePipelines.Commands.UploadArtifact("website", deployCakeFileName, "website");
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Build");
Task("GetArtifacts")
.IsDependentOn("GetSource")
.IsDependentOn("GetAddinPackages");
Task("AppVeyor")
.IsDependentOn("Build");
Task("AzureDevOps")
.IsDependentOn("UploadArtifacts");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
if (!StringComparer.OrdinalIgnoreCase.Equals(target, "Deploy"))
{
RunTarget(target);
}