-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.cake
169 lines (141 loc) · 5.34 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
//////////////////////////////////////////////////////////////////////
// TOOLS
//////////////////////////////////////////////////////////////////////
#tool "nuget:?package=GitVersion.CommandLine&prerelease"
using Path = System.IO.Path;
using IO = System.IO;
using Cake.Common.Tools;
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
///////////////////////////////////////////////////////////////////////////////
var publishDir = "./publish";
var artifactsDir = "./artifacts";
var assetDir = "./BuildAssets";
var localPackagesDir = "../LocalPackages";
var globalAssemblyFile = "./source/Solution Items/VersionInfo.cs";
var extensionName = "Octopus.Server.Extensibility.Authentication.DirectoryServices";
var solutionToBuild = "./source/DirectoryServicesAuthenticationProvider.sln";
var fileToPublish = "./source/" + extensionName + "/bin/Release/" + extensionName + ".dll";
var cleanups = new List<IDisposable>();
var gitVersionInfo = GitVersion(new GitVersionSettings {
OutputType = GitVersionOutput.Json
});
var nugetVersion = gitVersionInfo.NuGetVersion;
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
if(BuildSystem.IsRunningOnTeamCity)
BuildSystem.TeamCity.SetBuildNumber(gitVersionInfo.NuGetVersion);
if(BuildSystem.IsRunningOnAppVeyor)
AppVeyor.UpdateBuildVersion(gitVersionInfo.NuGetVersion);
Information("Building " + extensionName + " v{0}", nugetVersion);
});
Teardown(context =>
{
Information("Cleaning up");
foreach(var item in cleanups)
item.Dispose();
Information("Finished running tasks.");
});
//////////////////////////////////////////////////////////////////////
// PRIVATE TASKS
//////////////////////////////////////////////////////////////////////
Task("__Default")
.IsDependentOn("__Clean")
.IsDependentOn("__Restore")
.IsDependentOn("__UpdateAssemblyVersionInformation")
.IsDependentOn("__Build")
.IsDependentOn("__Pack")
.IsDependentOn("__Publish")
.IsDependentOn("__CopyToLocalPackages");
Task("__Clean")
.Does(() =>
{
CleanDirectory(artifactsDir);
CleanDirectory(publishDir);
CleanDirectories("./source/**/bin");
CleanDirectories("./source/**/obj");
});
Task("__Restore")
.Does(() => NuGetRestore(solutionToBuild));
Task("__UpdateAssemblyVersionInformation")
.Does(() =>
{
cleanups.Add(new AutoRestoreFile(globalAssemblyFile));
GitVersion(new GitVersionSettings {
UpdateAssemblyInfo = true,
UpdateAssemblyInfoFilePath = globalAssemblyFile
});
Information("AssemblyVersion -> {0}", gitVersionInfo.AssemblySemVer);
Information("AssemblyFileVersion -> {0}", $"{gitVersionInfo.MajorMinorPatch}.0");
Information("AssemblyInformationalVersion -> {0}", gitVersionInfo.InformationalVersion);
});
Task("__Build")
.IsDependentOn("__UpdateAssemblyVersionInformation")
.Does(() =>
{
DotNetBuild(solutionToBuild, settings => settings.SetConfiguration(configuration));
});
Task("__Pack")
.Does(() => {
var nugetPackDir = Path.Combine(publishDir, "nuget");
var nuspecFile = extensionName + ".nuspec";
CreateDirectory(nugetPackDir);
CopyFileToDirectory(Path.Combine(assetDir, nuspecFile), nugetPackDir);
CopyFileToDirectory(fileToPublish, nugetPackDir);
NuGetPack(Path.Combine(nugetPackDir, nuspecFile), new NuGetPackSettings {
Version = nugetVersion,
OutputDirectory = artifactsDir
});
});
Task("__Publish")
.WithCriteria(BuildSystem.IsRunningOnTeamCity)
.Does(() =>
{
NuGetPush($"{artifactsDir}/{extensionName}.{nugetVersion}.nupkg", new NuGetPushSettings {
Source = "https://octopus.myget.org/F/octopus-dependencies/api/v3/index.json",
ApiKey = EnvironmentVariable("MyGetApiKey")
});
if (gitVersionInfo.PreReleaseLabel == "")
{
NuGetPush($"{artifactsDir}/{extensionName}.{nugetVersion}.nupkg", new NuGetPushSettings {
Source = "https://www.nuget.org/api/v2/package",
ApiKey = EnvironmentVariable("NuGetApiKey")
});
}
});
Task("__CopyToLocalPackages")
.WithCriteria(BuildSystem.IsLocalBuild)
.IsDependentOn("__Pack")
.Does(() =>
{
CreateDirectory(localPackagesDir);
CopyFileToDirectory(Path.Combine(artifactsDir, $"{extensionName}.{nugetVersion}.nupkg"), localPackagesDir);
});
private class AutoRestoreFile : IDisposable
{
private byte[] _contents;
private string _filename;
public AutoRestoreFile(string filename)
{
_filename = filename;
_contents = IO.File.ReadAllBytes(filename);
}
public void Dispose() => IO.File.WriteAllBytes(_filename, _contents);
}
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("__Default");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);