forked from microsoft/appcenter-sdk-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
228 lines (196 loc) · 7.65 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#addin nuget:?package=Cake.FileHelpers&version=5.0.0
#addin nuget:?package=Cake.Incubator&version=7.0.0
#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 AndroidExternals = $"{ExternalsDirectory}/android";
var AppleExternals = $"{ExternalsDirectory}/apple";
var SdkStorageUrl = "https://mobilecentersdkdev.blob.core.windows.net/sdk/";
// Need to read versions before setting url values
VersionReader.ReadVersions();
var AndroidUrl = $"{SdkStorageUrl}AppCenter-SDK-Android-{VersionReader.AndroidVersion}.zip";
var AppleUrl = $"{SdkStorageUrl}AppCenter-SDK-Apple-{VersionReader.AppleVersion}.zip";
// Task Target for build
var Target = Argument("Target", Argument("t", "Default"));
// Prepare the platform paths for downloading, uploading, and preparing assemblies
Setup(context =>
{
AssemblyGroups = AssemblyGroup.ReadAssemblyGroups();
AppCenterModules = AppCenterModule.ReadAppCenterModules("nuget", VersionReader.SdkVersion);
});
Task("Build")
.IsDependentOn("Externals")
.Does(() =>
{
var platformId = IsRunningOnUnix() ? "mac" : "windows";
var buildGroups = BuildGroup.ReadBuildGroups(platformId);
foreach (var buildGroup in buildGroups)
{
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 Android binaries.
Task("Externals-Android")
.Does(() =>
{
var zipFile = System.IO.Path.Combine(AndroidExternals, "android.zip");
if (FileExists(zipFile))
{
return;
}
CleanDirectory(AndroidExternals);
// Download zip file.
var authParams = Argument("StorageAuthParams", EnvironmentVariable("STORAGE_AUTH_PARAMS"));
var artifactUrl = $"{AndroidUrl}{authParams}";
using (VerboseVerbosity())
DownloadFile(artifactUrl, zipFile);
Unzip(zipFile, AndroidExternals);
// Move binaries to externals/android so that linked files don't have versions
// in their paths
var files = GetFiles($"{AndroidExternals}/*/*");
CopyFiles(files, AndroidExternals);
}).OnError(HandleError);
// Downloading iOS binaries.
Task("Externals-Apple")
.WithCriteria(() => IsRunningOnUnix())
.Does(() =>
{
var zipFile = System.IO.Path.Combine(AppleExternals, "apple.zip");
if (FileExists(zipFile))
{
return;
}
CleanDirectory(AppleExternals);
// Download zip file.
var authParams = Argument("StorageAuthParams", EnvironmentVariable("STORAGE_AUTH_PARAMS"));
var artifactUrl = $"{AppleUrl}{authParams}";
using (VerboseVerbosity())
DownloadFile(artifactUrl, zipFile);
using(var process = StartAndReturnProcess("unzip",
new ProcessSettings
{
Arguments = new ProcessArgumentBuilder()
.Append(zipFile)
.Append("-d")
.Append(AppleExternals),
RedirectStandardOutput = true,
}))
{
process.WaitForExit(10000);
if (process.GetExitCode() != 0)
{
throw new Exception($"Failed to unzip {zipFile}");
}
}
var iosFrameworksLocation = System.IO.Path.Combine(AppleExternals, "AppCenter-SDK-Apple/iOS");
var macosFrameworksLocation = System.IO.Path.Combine(AppleExternals, "AppCenter-SDK-Apple/macOS");
// Move iOS frameworks.
var iosExternals = System.IO.Path.Combine(AppleExternals, "ios");
CleanDirectory(iosExternals);
// Copy the AppCenter binaries directly from the frameworks and add the ".a" extension.s
var files = GetFiles($"{iosFrameworksLocation}/*.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($"{iosFrameworksLocation}/{distributeBundle}"))
{
MoveDirectory($"{iosFrameworksLocation}/{distributeBundle}", $"{iosExternals}/{distributeBundle}");
}
// Move macOS frameworks.
var macosExternals = System.IO.Path.Combine(AppleExternals, "macos");
CleanDirectory(macosExternals);
var frameworks = GetDirectories($"{macosFrameworksLocation}/*.framework");
foreach (var frameworkDir in frameworks)
{
var dirName = frameworkDir.GetDirectoryName();
MoveDirectory(frameworkDir, $"{macosExternals}/{dirName}");
}
// Copy binaries for net-6.0 projects
files = GetFiles($"{macosExternals}/*.framework/Versions/A/AppCenter*");
foreach (var file in files)
{
var filename = file.GetFilename();
CopyFile(file, $"{macosExternals}/{filename}.a");
}
}).OnError(HandleError);
// Create a common externals task depending on platform specific ones
Task("Externals").IsDependentOn("Externals-Apple").IsDependentOn("Externals-Android");
// Main Task.
Task("Default")
.IsDependentOn("PrepareAssemblies")
.IsDependentOn("NuGet");
// Pack NuGets for appropriate platform
Task("NuGet")
.Does(()=>
{
CleanDirectory("output");
// Package NuGets.
foreach (var module in AppCenterModules)
{
var originalPath = System.IO.Path.Combine("nuget", module.NuspecFilename);
// Skip modules that don't have nuspecs.
if (!FileExists(originalPath))
{
continue;
}
// Prepare nuspec by making substitutions in a copied nuspec (to avoid altering the original)
var nuspecFileName = System.IO.Path.GetFileNameWithoutExtension(originalPath) + ".copy.nuspec";
var nuspecPath = System.IO.Path.Combine("nuget", nuspecFileName);
CopyFile(originalPath, nuspecPath);
ReplaceTextInFiles(nuspecPath, "$version$", module.NuGetVersion);
foreach (var group in AssemblyGroups)
{
var groupFolder = MakeAbsolute((DirectoryPath) group.Folder).FullPath;
ReplaceTextInFiles(nuspecPath, group.NuspecKey, groupFolder);
}
Information("Building a NuGet package for " + module.DotNetModule + " version " + module.NuGetVersion);
NuGetPack(File(nuspecPath), new NuGetPackSettings {
Verbosity = NuGetVerbosity.Detailed,
Version = module.NuGetVersion,
RequireLicenseAcceptance = true
});
// Clean up
DeleteFiles(nuspecPath);
}
MoveFiles("Microsoft.AppCenter*.nupkg", "output");
}).OnError(HandleError);
RunTarget(Target);