This repository was archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathbuild.cake
152 lines (126 loc) · 4.4 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
#addin nuget:?package=Cake.FileHelpers&version=3.2.1
var FB_VERSION = "13.1.0";
var NUGET_VERSION = "13.1.0";
var BUILD_COMMIT = EnvironmentVariable("BUILD_COMMIT") ?? "DEV";
var BUILD_NUMBER = EnvironmentVariable("BUILD_NUMBER") ?? "DEBUG";
var BUILD_TIMESTAMP = DateTime.UtcNow.ToString();
var TARGET = Argument ("t", Argument ("target", "ci"));
var ARTIFACTS = new List<ArtifactInfo> {
new ArtifactInfo("facebook-android-sdk", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-core", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-common", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-login", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-share", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-applinks", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-messenger", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("facebook-gamingservices", FB_VERSION, NUGET_VERSION),
new ArtifactInfo("audience-network-sdk", "6.6.0", "6.6.0")
};
class ArtifactInfo
{
public ArtifactInfo(string id, string version, string nugetVersion = null)
{
ArtifactId = id;
Version = version;
NugetVersion = nugetVersion ?? version;
}
public string ArtifactId { get;set; }
public string Version { get;set; }
public string NugetVersion { get;set; }
}
Task ("externals")
.Does (() =>
{
EnsureDirectoryExists("./output");
EnsureDirectoryExists ("./externals/");
foreach (var artifact in ARTIFACTS) {
var url = $"http://search.maven.org/remotecontent?filepath=com/facebook/android/{artifact.ArtifactId}/{artifact.Version}/{artifact.ArtifactId}-{artifact.Version}.aar";
var pomUrl = $"http://search.maven.org/remotecontent?filepath=com/facebook/android/{artifact.ArtifactId}/{artifact.Version}/{artifact.ArtifactId}-{artifact.Version}.pom";
var docUrl = $"http://search.maven.org/remotecontent?filepath=com/facebook/android/{artifact.ArtifactId}/{artifact.Version}/{artifact.ArtifactId}-{artifact.Version}-javadoc.jar";
var aar = $"./externals/{artifact.ArtifactId}.aar";
if (!FileExists (aar))
DownloadFile(url, aar);
var pom = $"./externals/{artifact.ArtifactId}.pom";
if (!FileExists (pom))
DownloadFile(pomUrl, pom);
try {
var localDocsFile = $"./externals/{artifact.ArtifactId}-javadoc.jar";
if (!FileExists (localDocsFile))
DownloadFile(docUrl, localDocsFile);
EnsureDirectoryExists ($"./externals/{artifact.ArtifactId}-docs/");
Unzip (localDocsFile, $"./externals/{artifact.ArtifactId}-docs/");
} catch {}
}
});
Task ("libs")
.IsDependentOn("externals")
.IsDependentOn("ci-setup")
.Does(() =>
{
MSBuild("./source/Xamarin.Facebook.sln", c =>
c.SetConfiguration("Release")
.WithRestore()
.WithTarget("Build")
.WithProperty("DesignTimeBuild", "false"));
});
Task ("samples")
.IsDependentOn("libs")
.Does(() =>
{
var samples = new string[] {
"./samples/HelloFacebookSample.sln",
"./samples/MessengerSendSample.sln",
};
foreach (var sampleSln in samples) {
MSBuild(sampleSln, c =>
c.SetConfiguration("Release")
.WithTarget("Restore"));
MSBuild(sampleSln, c =>
c.SetConfiguration("Release")
.WithTarget("Build")
.WithProperty("DesignTimeBuild", "false"));
}
});
Task ("nuget")
.IsDependentOn("libs")
.Does(() =>
{
EnsureDirectoryExists("./output");
foreach (var art in ARTIFACTS) {
var csproj = "./source/" + art.ArtifactId + "/" + art.ArtifactId + ".csproj";
MSBuild(csproj, c =>
c.SetConfiguration("Release")
.WithProperty("NoBuild", "true")
.WithProperty("PackageVersion", art.NugetVersion)
.WithProperty("PackageOutputPath", MakeAbsolute((DirectoryPath)"./output/").FullPath)
.WithProperty("DesignTimeBuild", "false")
.WithTarget("Pack"));
}
});
Task ("ci-setup")
.WithCriteria (!BuildSystem.IsLocalBuild)
.Does (() =>
{
var glob = "./source/**/AssemblyInfo.cs";
ReplaceTextInFiles(glob, "{BUILD_COMMIT}", BUILD_COMMIT);
ReplaceTextInFiles(glob, "{BUILD_NUMBER}", BUILD_NUMBER);
ReplaceTextInFiles(glob, "{BUILD_TIMESTAMP}", BUILD_TIMESTAMP);
});
Task ("clean")
.Does (() =>
{
MSBuild("./source/Xamarin.Facebook.sln", c =>
c.SetConfiguration("Release")
.WithTarget("Clean"));
if (DirectoryExists ("./externals/"))
DeleteDirectory ("./externals", new DeleteDirectorySettings {
Recursive = true,
Force = true
});
});
Task ("ci")
.IsDependentOn("externals")
.IsDependentOn("libs")
.IsDependentOn("nuget")
.IsDependentOn("samples");
RunTarget (TARGET);