This repository was archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 686
/
Copy pathbuild.cake
90 lines (72 loc) · 3.36 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
var TARGET = Argument ("t", Argument ("target", "ci"));
var NUGET_PATCH = ".0";
var GLIDE_VERSION = "4.13.2";
var GLIDE_NUGET_VERSION = GLIDE_VERSION + NUGET_PATCH;
var GLIDE_URL = $"https://repo1.maven.org/maven2/com/github/bumptech/glide/glide/{GLIDE_VERSION}/glide-{GLIDE_VERSION}.aar";
var GIFDECODER_VERSION = GLIDE_VERSION;
var GIFDECODER_NUGET_VERSION = GIFDECODER_VERSION + NUGET_PATCH;
var GIFDECODER_URL = $"https://repo1.maven.org/maven2/com/github/bumptech/glide/gifdecoder/{GIFDECODER_VERSION}/gifdecoder-{GIFDECODER_VERSION}.aar";
var DISKLRUCACHE_VERSION = GLIDE_VERSION;
var DISKLRUCACHE_NUGET_VERSION = DISKLRUCACHE_VERSION + NUGET_PATCH;
var DISKLRUCACHE_URL = $"https://repo1.maven.org/maven2/com/github/bumptech/glide/disklrucache/{DISKLRUCACHE_VERSION}/disklrucache-{DISKLRUCACHE_VERSION}.jar";
var RECYCLERVIEW_VERSION = GLIDE_VERSION;
var RECYCLERVIEW_NUGET_VERSION = RECYCLERVIEW_VERSION + NUGET_PATCH;
var RECYCLERVIEW_URL = $"https://repo1.maven.org/maven2/com/github/bumptech/glide/recyclerview-integration/{RECYCLERVIEW_VERSION}/recyclerview-integration-{RECYCLERVIEW_VERSION}.aar";
Task ("externals")
.WithCriteria (!FileExists ("./externals/glide/classes.jar"))
.Does (() =>
{
if (!DirectoryExists ("./externals/"))
CreateDirectory ("./externals");
// Download Dependencies
DownloadFile (GLIDE_URL, "./externals/glide.aar");
Unzip ("./externals/glide.aar", "./externals/glide/");
DownloadFile(GIFDECODER_URL, "./externals/gifdecoder.aar");
Unzip ("./externals/gifdecoder.aar", "./externals/gifdecoder/");
DownloadFile(DISKLRUCACHE_URL, "./externals/disklrucache.jar");
DownloadFile(RECYCLERVIEW_URL, "./externals/recyclerview-integration.aar");
Unzip ("./externals/recyclerview-integration.aar", "./externals/recyclerview-integration/");
// Update .csproj nuget versions
XmlPoke("./source/Xamarin.Android.Glide/Xamarin.Android.Glide.csproj", "/Project/PropertyGroup/PackageVersion", GLIDE_NUGET_VERSION);
XmlPoke("./source/Xamarin.Android.Glide.DiskLruCache/Xamarin.Android.Glide.DiskLruCache.csproj", "/Project/PropertyGroup/PackageVersion", DISKLRUCACHE_NUGET_VERSION);
XmlPoke("./source/Xamarin.Android.Glide.GifDecoder/Xamarin.Android.Glide.GifDecoder.csproj", "/Project/PropertyGroup/PackageVersion", GIFDECODER_NUGET_VERSION);
XmlPoke("./source/Xamarin.Android.Glide.RecyclerViewIntegration/Xamarin.Android.Glide.RecyclerViewIntegration.csproj", "/Project/PropertyGroup/PackageVersion", RECYCLERVIEW_NUGET_VERSION);
});
Task("libs")
.IsDependentOn("externals")
.Does(() =>
{
DotNetCoreRestore ("./source/Xamarin.Android.Glide.sln");
DotNetCoreMSBuild ("./source/Xamarin.Android.Glide.sln",
new DotNetCoreMSBuildSettings()
.SetConfiguration("Release")
);
});
Task("nuget")
.IsDependentOn("libs")
.Does(() =>
{
DotNetCoreMSBuild ("./source/Xamarin.Android.Glide.sln",
new DotNetCoreMSBuildSettings()
.WithTarget("Pack")
.SetConfiguration("Release")
.WithProperty ("PackageOutputPath", MakeAbsolute(new FilePath("./output")).FullPath)
.WithProperty ("PackageRequireLicenseAcceptance", "true")
.WithProperty ("NoBuild", "true")
);
});
Task("samples")
.IsDependentOn("nuget");
Task("ci")
.IsDependentOn("nuget")
.IsDependentOn("samples");
Task ("clean")
.Does (() =>
{
if (DirectoryExists ("./externals/"))
DeleteDirectory ("./externals", new DeleteDirectorySettings {
Recursive = true,
Force = true
});
});
RunTarget (TARGET);