-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild-webapi-netfx.cake
252 lines (213 loc) · 8.79 KB
/
build-webapi-netfx.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#addin nuget:?package=Cake.FileHelpers&version=3.2.1
#tool nuget:?package=xunit.runner.console&version=2.4.1
var target = Argument("target", "Default");
Information("build-webapi-netfx.cake -- Aug-30-2022");
var versionFromFile = FileReadText("./version.txt")
.Trim()
.Split('.')
.Take(2)
.Aggregate("", (version, x) => $"{version}{x}.")
.Trim('.');
var buildNumber = AppVeyor.Environment.Build.Number;
var version = $"{versionFromFile}.{buildNumber}";
var isNewEnvironment = false;
bool.TryParse(EnvironmentVariable("NewRitterEnvironment"), out isNewEnvironment);
var packageVersion = version;
if (!AppVeyor.IsRunningOnAppVeyor)
{
packageVersion += "-dev";
}
var configuration = "Release";
if (isNewEnvironment
&& !AppVeyor.Environment.PullRequest.IsPullRequest
&& AppVeyor.Environment.Repository.Branch == "master")
{
configuration = "Development";
}
else if (!AppVeyor.Environment.PullRequest.IsPullRequest
&& AppVeyor.Environment.Repository.Branch == "development")
{
configuration = "QA";
}
var artifactsDir = Directory("./artifacts");
// Assume a single solution per repository
var solution = GetFiles("./**/*.sln").First();
Information($"solution={solution}");
// Look for a "host" project (named either "host" or "api")
var hostProject = GetFiles("./src/**/*.csproj")
.SingleOrDefault(x =>
(
x.GetFilename().FullPath.ToLowerInvariant().Contains("api")
|| x.GetFilename().FullPath.ToLowerInvariant().Contains("host")
)
&& !x.GetFilename().FullPath.ToLowerInvariant().Contains("webapi"));
Information($"hostProject={hostProject}");
var hostDirectory = hostProject?.GetDirectory();
Information($"hostDirectory={hostDirectory}");
Task("Clean")
.Does(() =>
{
CleanDirectory(artifactsDir);
});
Task("Restore-NuGet-Packages")
.IsDependentOn("Clean")
.Does(() =>
{
NuGetRestore(solution);
});
Task("Version")
.Does(() =>
{
foreach (var assemblyInfo in GetFiles("./src/**/AssemblyInfo.cs"))
{
CreateAssemblyInfo(
assemblyInfo.ChangeExtension(".Generated.cs"),
new AssemblyInfoSettings
{
Version = version,
InformationalVersion = packageVersion
});
}
});
Task("Build")
.IsDependentOn("Restore-NuGet-Packages")
.IsDependentOn("Version")
.Does(() =>
{
MSBuild(solution, settings =>
settings
.SetConfiguration(configuration)
.WithProperty("TreatWarningsAsErrors", "True")
.WithProperty("DeployOnBuild", "True")
.SetVerbosity(Verbosity.Minimal)
.AddFileLogger());
});
Task("Run-Tests")
.IsDependentOn("Build")
.Does(() =>
{
XUnit2("./test*/**/bin/" + configuration + "/**/*.Tests.dll");
});
Task("Package")
.IsDependentOn("Run-Tests")
.Does(() =>
{
if (hostProject != null)
{
Information($"Found a host/api project to build.");
var hostArtifactsDir = artifactsDir + Directory("Host");
Information($"hostArtifactsDir={hostArtifactsDir}");
var hostProjectName = hostProject.GetFilenameWithoutExtension();
Information($"hostProjectName={hostProjectName}");
System.IO.File.AppendAllText(
"./src/" + hostProjectName + "/obj/" + configuration + "/Package/PackageTmp/githash.txt",
BuildSystem.AppVeyor.Environment.Repository.Commit.Id);
Zip(
"./src/" + hostProjectName + "/obj/" + configuration + "/Package/PackageTmp",
"./artifacts/" + hostProjectName + ".zip"
);
// Search for class library DLLs that need to be published to NuGet/MyGet.
// They must have PackageId defined in the .csproj file.
Information("\nSearching for csproj files with PackageId defined to create NuGet packages...");
var clientProjects = GetFiles("./src/**/*.csproj");
foreach (var clientProject in clientProjects)
{
var clientProjectPath = clientProject.ToString();
// XmlPeek - https://stackoverflow.com/a/34886946
var packageId = XmlPeek(
clientProjectPath,
"/Project/PropertyGroup/PackageId/text()",
new XmlPeekSettings { SuppressWarning = true }
);
if (!string.IsNullOrWhiteSpace(packageId))
{
Information($"\nclientProjectPath={clientProjectPath}");
Information($"packageId={packageId}");
var isNetstandard = FindRegexMatchesInFile(
clientProjectPath,
@"<TargetFrameworks?>.*netstandard.*<\/TargetFrameworks?>",
System.Text.RegularExpressions.RegexOptions.IgnoreCase
).Any();
if (isNetstandard)
{
DotNetCorePack(clientProjectPath, new DotNetCorePackSettings
{
Configuration = configuration,
MSBuildSettings = new DotNetCoreMSBuildSettings().SetVersion(packageVersion),
NoBuild = true,
OutputDirectory = artifactsDir,
IncludeSymbols = true
});
}
else
{
NuGetPack(clientProjectPath, new NuGetPackSettings
{
OutputDirectory = artifactsDir,
Version = packageVersion,
Properties = new Dictionary<string, string>
{
{ "Configuration", configuration }
},
Symbols = true
});
}
}
}
var additionalZipDeploymentsFile = "./build-additional-zip-deployments.txt";
if (FileExists(additionalZipDeploymentsFile))
{
var additionalZipDeployments = FileReadText(additionalZipDeploymentsFile)
.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries)
.Select(x => x.Trim());
foreach (var additionalZipDeployment in additionalZipDeployments)
{
var projectName = GetFiles("./src/**/*.csproj")
.Single(x => x.GetFilename().FullPath == additionalZipDeployment + ".csproj")
.GetFilenameWithoutExtension();
Zip(
"./src/" + projectName + "/obj/" + configuration + "/Package/PackageTmp",
"./artifacts/" + projectName + ".zip"
);
}
}
var additionalClientDeploymentsFile = "./build-additional-client-deployments.txt";
if (FileExists(additionalClientDeploymentsFile))
{
var additionalClientDeployments = FileReadText(additionalClientDeploymentsFile)
.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries)
.Select(x => x.Trim());
foreach (var additionalClientDeployment in additionalClientDeployments)
{
string packFile;
var filePathWithoutExtension = "./src/"
+ additionalClientDeployment
+ "/"
+ additionalClientDeployment;
var potentialNuspec = filePathWithoutExtension + ".nuspec";
var potentialCsproj = filePathWithoutExtension + ".csproj";
if (FileExists(potentialNuspec))
{
packFile = potentialNuspec;
}
else
{
packFile = potentialCsproj;
}
NuGetPack(packFile, new NuGetPackSettings
{
OutputDirectory = artifactsDir,
Version = packageVersion,
Properties = new Dictionary<string, string>
{
{ "Configuration", configuration }
},
Symbols = true
});
}
}
}
});
Task("Default")
.IsDependentOn("Package");
RunTarget(target);