This repository has been archived by the owner on Jan 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.cake
260 lines (217 loc) · 9.64 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#tool nuget:?package=XamarinComponent
#addin nuget:?package=Cake.FileHelpers&version=3.0.0
#addin nuget:?package=Cake.Git&version=0.18.0
#addin nuget:?package=Cake.Incubator&version=2.0.2
#addin nuget:?package=Cake.Xamarin
#load "scripts/utility.cake"
#load "scripts/configuration/config-parser.cake"
using System.Net;
using System.Text;
using System.Linq;
using System.Text.RegularExpressions;
using System.Collections.Generic;
// Contains all assembly paths and how to use them
IList<AssemblyGroup> AssemblyGroups = null;
// Available AppCenter modules.
IList<AppCenterModule> AppCenterModules = null;
// URLs for downloading binaries.
/*
* Read this: http://www.mono-project.com/docs/faq/security/.
* On Windows,
* you have to do additional steps for SSL connection to download files.
* http://stackoverflow.com/questions/4926676/mono-webrequest-fails-with-https
* By running mozroots and install part of Mozilla's root certificates can make it work.
*/
var ExternalsDirectory = "externals";
var IosExternals = $"{ExternalsDirectory}/ios";
var MacosExternals = $"{ExternalsDirectory}/macos";
var SdkStorageUrl = "https://mobilecentersdkdev.blob.core.windows.net/sdk/";
// Need to read versions before setting url values
VersionReader.ReadVersions();
var IosUrl = $"{SdkStorageUrl}AppCenter-SDK-Apple-{VersionReader.IosVersion}.zip";
var MacosUrl = $"{SdkStorageUrl}AppCenter-SDK-Apple-{VersionReader.IosVersion}.zip";
// Task Target for build
var Target = Argument("Target", Argument("t", "Default"));
var NuspecFolder = "nuget";
// Prepare the platform paths for downloading, uploading, and preparing assemblies
Setup(context =>
{
AssemblyGroups = AssemblyGroup.ReadAssemblyGroups();
AppCenterModules = AppCenterModule.ReadAppCenterModules(NuspecFolder, VersionReader.SdkVersion);
});
Task("Build")
.IsDependentOn("Externals")
.Does(() =>
{
var platformId = IsRunningOnUnix() ? "mac" : "windows";
var buildGroup = new BuildGroup(platformId);
buildGroup.ExecuteBuilds();
}).OnError(HandleError);
Task("PrepareAssemblies")
.IsDependentOn("Build")
.Does(() =>
{
foreach (var assemblyGroup in AssemblyGroups)
{
if (assemblyGroup.Download)
{
continue;
}
// Clean all directories before copying. Doing so before each operation
// could cause subdirectories that are created first to be deleted.
CleanDirectory(assemblyGroup.Folder);
CopyFiles(assemblyGroup.AssemblyPaths.Where(i => FileExists(i)), assemblyGroup.Folder, false);
}
}).OnError(HandleError);
// Downloading iOS binaries.
Task("Externals-Ios")
.Does(() =>
{
CleanDirectory(IosExternals);
var zipFile = System.IO.Path.Combine(IosExternals, "ios.zip");
// Download zip file containing AppCenter frameworks
DownloadFile(IosUrl, zipFile);
Unzip(zipFile, IosExternals);
var frameworksLocation = System.IO.Path.Combine(IosExternals, "AppCenter-SDK-Apple/iOS");
// Copy the AppCenter binaries directly from the frameworks and add the ".a" extension
var files = GetFiles($"{frameworksLocation}/*.framework/AppCenter*");
foreach (var file in files)
{
var filename = file.GetFilename();
MoveFile(file, $"{IosExternals}/{filename}.a");
}
// Copy Distribute resource bundle and copy it to the externals directory.
var distributeBundle = "AppCenterDistributeResources.bundle";
if(DirectoryExists($"{frameworksLocation}/{distributeBundle}"))
{
MoveDirectory($"{frameworksLocation}/{distributeBundle}", $"{IosExternals}/{distributeBundle}");
}
}).OnError(HandleError);
// Downloading macOS binaries.
Task("Externals-Macos")
.Does(() =>
{
CleanDirectory(MacosExternals);
/*
var zipFile = System.IO.Path.Combine(MacosExternals, "macos.zip");
// Download zip file containing AppCenter frameworks
DownloadFile(MacosUrl, zipFile);
Unzip(zipFile, MacosExternals);
*/
CopyDirectory($"{IosExternals}/AppCenter-SDK-Apple", $"{MacosExternals}/AppCenter-SDK-Apple");
var frameworksLocation = System.IO.Path.Combine(MacosExternals, "AppCenter-SDK-Apple/macOS");
// Copy the AppCenter binaries directly from the frameworks and add the ".a" extension
var files = GetFiles($"{frameworksLocation}/*.framework/Versions/A/AppCenter*");
foreach (var file in files)
{
var filename = file.GetFilename();
CopyFile(file, $"{MacosExternals}/{filename}.a");
}
//generate correct .framework directories
CopyDirectory($"{frameworksLocation}/AppCenter.framework", $"{MacosExternals}/AppCenter.framework");
CopyDirectory($"{frameworksLocation}/AppCenterAnalytics.framework", $"{MacosExternals}/AppCenterAnalytics.framework");
CopyDirectory($"{frameworksLocation}/AppCenterCrashes.framework", $"{MacosExternals}/AppCenterCrashes.framework");
//cleanup before genereating symlinks
DeleteFiles($"{MacosExternals}/AppCenter.framework/AppCenter");
DeleteFiles($"{MacosExternals}/AppCenter.framework/Headers");
DeleteFiles($"{MacosExternals}/AppCenter.framework/Modules");
DeleteFiles($"{MacosExternals}/AppCenter.framework/PrivateHeaders");
DeleteFiles($"{MacosExternals}/AppCenter.framework/Resources");
DeleteFiles($"{MacosExternals}/AppCenter.framework/Versions/Current");
DeleteFiles($"{MacosExternals}/AppCenterAnalytics.framework/AppCenterAnalytics");
DeleteFiles($"{MacosExternals}/AppCenterAnalytics.framework/Headers");
DeleteFiles($"{MacosExternals}/AppCenterAnalytics.framework/Modules");
DeleteFiles($"{MacosExternals}/AppCenterAnalytics.framework/Resources");
DeleteFiles($"{MacosExternals}/AppCenterAnalytics.framework/Versions/Current");
DeleteFiles($"{MacosExternals}/AppCenterCrashes.framework/AppCenterCrashes");
DeleteFiles($"{MacosExternals}/AppCenterCrashes.framework/Headers");
DeleteFiles($"{MacosExternals}/AppCenterCrashes.framework/Modules");
DeleteFiles($"{MacosExternals}/AppCenterCrashes.framework/Resources");
DeleteFiles($"{MacosExternals}/AppCenterCrashes.framework/Versions/Current");
StartProcess("sh", new ProcessSettings{Arguments = $"frameworksymlinks.sh"});
// MacOS does not support distribute yet
// Copy Distribute resource bundle and copy it to the externals directory.
// var distributeBundle = "AppCenterDistributeResources.bundle";
// if(DirectoryExists($"{frameworksLocation}/{distributeBundle}"))
// {
// MoveDirectory($"{frameworksLocation}/{distributeBundle}", $"{IosExternals}/{distributeBundle}");
// }
}).OnError(HandleError);
// Create a common externals task depending on platform specific ones
Task("Externals").IsDependentOn("Externals-Ios").IsDependentOn("Externals-Macos");
// Main Task.
Task("Default").IsDependentOn("NuGet").IsDependentOn("RemoveTemporaries");
// Pack NuGets for appropriate platform
Task("NuGet")
.IsDependentOn("PrepareAssemblies")
.Does(()=>
{
CleanDirectory("output");
var specCopyName = Statics.TemporaryPrefix + "spec_copy.nuspec";
// Package NuGets.
foreach (var module in AppCenterModules)
{
var nuspecFilename = (IsRunningOnUnix() ? module.MacNuspecFilename : module.WindowsNuspecFilename);
var nuspecPath = System.IO.Path.Combine(NuspecFolder, nuspecFilename);
// Skip modules that don't have nuspecs.
if (!FileExists(nuspecPath))
{
continue;
}
// Prepare nuspec by making substitutions in a copied nuspec (to avoid altering the original)
CopyFile(nuspecPath, specCopyName);
ReplaceAssemblyPathsInNuspecs(specCopyName);
Information("Building a NuGet package for " + module.DotNetModule + " version " + module.NuGetVersion);
NuGetPack(File(specCopyName), new NuGetPackSettings {
Verbosity = NuGetVerbosity.Detailed,
Version = module.NuGetVersion,
RequireLicenseAcceptance = true
});
// Clean up
DeleteFiles(specCopyName);
}
MoveFiles("nor0x.AppCenter*.nupkg", "output");
});
//}).OnError(HandleError);
Task("NuGetPackAzDO").Does(()=>
{
var nuspecPathPrefix = EnvironmentVariable("NUSPEC_PATH");
foreach (var module in AppCenterModules)
{
var nuspecPath = System.IO.Path.Combine(nuspecPathPrefix, module.MainNuspecFilename);
ReplaceTextInFiles(nuspecPath, "$version$", module.NuGetVersion);
ReplaceAssemblyPathsInNuspecs(nuspecPath);
var spec = GetFiles(nuspecPath);
// Create the NuGet packages.
Information("Building a NuGet package for " + module.MainNuspecFilename);
NuGetPack(spec, new NuGetPackSettings {
Verbosity = NuGetVerbosity.Detailed,
RequireLicenseAcceptance = true
});
}
}).OnError(HandleError);
// In AzDO, the assembly path environment variable names should be in the format
// "{uppercase group id}_ASSEMBLY_PATH_NUSPEC"
void ReplaceAssemblyPathsInNuspecs(string nuspecPath)
{
// For the Tuples, Item1 is variable name, Item2 is variable value.
var assemblyPathVars = new List<Tuple<string, string>>();
foreach (var group in AssemblyGroups)
{
if (group.NuspecKey == null)
{
continue;
}
var environmentVariableName = group.Id.ToUpper() + "_ASSEMBLY_PATH_NUSPEC";
var assemblyPath = EnvironmentVariable(environmentVariableName, group.Folder);
var tuple = Tuple.Create(group.NuspecKey, assemblyPath);
assemblyPathVars.Add(tuple);
}
foreach (var assemblyPathVar in assemblyPathVars)
{
ReplaceTextInFiles(nuspecPath, assemblyPathVar.Item1, assemblyPathVar.Item2);
}
}
RunTarget(Target);