-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
executable file
·232 lines (203 loc) · 7.42 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
#tool nuget:?package=NUnit.ConsoleRunner&version=3.4.0
// Cake Addins
#addin nuget:?package=Cake.FileHelpers&version=2.0.0
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var VERSION = "1.14.2";
var PATCH = ".1";
var CSE_VERSION = "1.0.5";
//////////////////////////////////////////////////////////////////////
// PREPARATION
//////////////////////////////////////////////////////////////////////
var slnPath = "./adyen-droid.sln";
var artifacts = new [] {
new Artifact {
Name = "CSE",
Version = CSE_VERSION,
AssemblyInfoPath = "./Naxam.AdyenCSE.Droid/Properties/AssemblyInfo.cs",
NuspecPath = "./adyencse.nuspec",
DownloadUrl = "https://bintray.com/adyen/adyen/download_file?file_path=com%2Fadyen%2Fcse%2Fadyen-cse%2F{0}%2Fadyen-cse-{0}.aar",
JarPath = "./Naxam.AdyenCSE.Droid/Jars/adyen-cse.aar",
Dependencies = new []{
new NuSpecDependency {
Id = "Xamarin.Android.Support.v7.AppCompat",
Version = "25.4.0.2"
}
}
},
new Artifact {
Name = "Core",
Version = VERSION,
AssemblyInfoPath = "./Naxam.AdyenCore.Droid/Properties/AssemblyInfo.cs",
NuspecPath = "./adyencore.nuspec",
DownloadUrl = "https://bintray.com/adyen/adyen/download_file?file_path=com%2Fadyen%2Fcheckout%2Fcore%2F{0}%2Fcore-{0}.aar",
JarPath = "./Naxam.AdyenCore.Droid/Jars/core.aar",
Dependencies = new []{
new NuSpecDependency {
Id = "Xamarin.Android.Support.v7.AppCompat",
Version = "25.4.0.2"
},
new NuSpecDependency {
Id = "Xamarin.Android.Support.CustomTabs",
Version = "25.4.0.2"
},
new NuSpecDependency {
Id = "Xamarin.Android.Support.Annotations",
Version = "25.4.0.2"
},
new NuSpecDependency {
Id = "Naxam.ReactiveStreams.Droid",
Version = "1.0.0"
},
new NuSpecDependency {
Id = "Naxam.RxAndroid.Droid",
Version = "2.0.1"
},
new NuSpecDependency {
Id = "Naxam.RxJava2.Droid",
Version = "2.1.2"
},
new NuSpecDependency {
Id = "Naxam.AdyenCSE.Droid",
Version = CSE_VERSION + PATCH
}
}
},
new Artifact {
Name = "Utils",
Version = VERSION,
AssemblyInfoPath = "./Naxam.AdyenUtils.Droid/Properties/AssemblyInfo.cs",
NuspecPath = "./adyenutils.nuspec",
DownloadUrl = "https://bintray.com/adyen/adyen/download_file?file_path=com%2Fadyen%2Fcheckout%2Futils%2F{0}%2Futils-{0}.aar",
JarPath = "./Naxam.AdyenUtils.Droid/Jars/utils.aar",
Dependencies = new []{
new NuSpecDependency {
Id = "Xamarin.Android.Support.v7.AppCompat",
Version = "25.4.0.2"
}
}
},
new Artifact {
Name = "CardScan",
Version = VERSION,
AssemblyInfoPath = "./Naxam.AdyenCardScan.Droid/Properties/AssemblyInfo.cs",
NuspecPath = "./adyencardscan.nuspec",
DownloadUrl = "https://bintray.com/adyen/adyen/download_file?file_path=com%2Fadyen%2Fcheckout%2Fcardscan%2F{0}%2Fcardscan-{0}.aar",
JarPath = "./Naxam.AdyenCardScan.Droid/Jars/cardscan.aar",
Dependencies = new []{
new NuSpecDependency {
Id = "Xamarin.Android.Support.v7.AppCompat",
Version = "25.4.0.2"
}
}
},
new Artifact {
Name = "UI",
Version = VERSION,
AssemblyInfoPath = "./Naxam.AdyenUI.Droid/Properties/AssemblyInfo.cs",
NuspecPath = "./adyenui.nuspec",
DownloadUrl = "https://bintray.com/adyen/adyen/download_file?file_path=com%2Fadyen%2Fcheckout%2Fui%2F{0}%2Fui-{0}.aar",
JarPath = "./Naxam.AdyenUI.Droid/Jars/ui.aar",
Dependencies = new []{
new NuSpecDependency {
Id = "Naxam.AdyenCSE.Droid",
Version = CSE_VERSION + PATCH
},
new NuSpecDependency {
Id = "Naxam.AdyenCore.Droid",
Version = VERSION + PATCH
},
new NuSpecDependency {
Id = "Naxam.AdyenCardScan.Droid",
Version = VERSION + PATCH
},
new NuSpecDependency {
Id = "Naxam.AdyenUtils.Droid",
Version = VERSION + PATCH
}
}
}
};
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Downloads")
.Does(() =>
{
foreach(var artifact in artifacts) {
var downloadUrl = string.Format(artifact.DownloadUrl, artifact.Version);
var jarPath = string.Format(artifact.JarPath, artifact.Version);
DownloadFile(downloadUrl, jarPath);
}
});
Task("Clean")
.Does(() =>
{
CleanDirectory("./packages");
var nugetPackages = GetFiles("./*.nupkg");
foreach (var package in nugetPackages)
{
DeleteFile(package);
}
});
Task("Restore-NuGet-Packages")
.Does(() =>
{
NuGetRestore(slnPath);
});
Task("Build")
.Does(() =>
{
MSBuild(slnPath, settings => settings.SetConfiguration(configuration));
});
Task("UpdateVersion")
.Does(() =>
{
foreach(var artifact in artifacts) {
ReplaceRegexInFiles(artifact.AssemblyInfoPath, "\\[assembly\\: AssemblyVersion([^\\]]+)\\]", string.Format("[assembly: AssemblyVersion(\"{0}\")]", artifact.Version + PATCH));
}
});
Task("Pack")
.Does(() =>
{
foreach(var artifact in artifacts) {
NuGetPack(artifact.NuspecPath, new NuGetPackSettings {
Version = artifact.Version + PATCH,
Title = $"Adyen for Android - {artifact.Name}",
Description = $"Xamarin.Android binding library - Adyen for Android - {artifact.Name}",
Summary = $"Xamarin.Android binding library - Adyen for Android - {artifact.Name}",
Dependencies = artifact.Dependencies,
ReleaseNotes = new [] {
$"Adyen for Android - {artifact.Name} v{artifact.Version}"
}
});
}
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
// .IsDependentOn("Downloads")
.IsDependentOn("UpdateVersion")
// .IsDependentOn("Clean")
// .IsDependentOn("Restore-NuGet-Packages")
.IsDependentOn("Build")
.IsDependentOn("Pack");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);
class Artifact {
public string AssemblyInfoPath { get; set; }
public string SolutionPath { get; set; }
public string DownloadUrl { get; set; }
public string JarPath { get; set; }
public string NuspecPath { get; set; }
public string Version { get; set; }
public string ReleaseNote { get; set; }
public string Name { get; set; }
public NuSpecDependency[] Dependencies { get; set; } = new NuSpecDependency[0];
}