forked from wekempf/testify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testify.cake
256 lines (238 loc) · 8.64 KB
/
testify.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
253
254
255
256
/*
* Tasks: Clean, Restore, Version, Build, Test, NuGetPack, NuGetPush, Docs, Default
*
* Clean
* Cleans the directory structure of all build artifacts (including NuGet packages).
* Not configuration dependent.
* Restore
* Restores NuGet packages for all solutions.
* Version
* Obtains the version to use from GitVersion and updates AssemblyInfo.cs files if running
* on the build server.
* Build - Clean, Restore, Version
* Builds all solutions. The 'configuration' argument determines what configuration to build:
* if not supplied 'Release' is assumed.
* Test - Build
* Runs all unit tests obtaining code coverage and producing a report. The report is either
* a local report in the TestResults directory or if running on the build server is a report
* sent to Coveralls. On the build server this requires a CoverallsToken environment variable
* to be set with the security token to use when publishing.
* Push - Test
* Pushes NuGet packages to a NuGet server. This target does nothing when not run on the
* build server. Builds on the master branch push to the official NuGet.org server while
* all other branches push to a MyGet server. This requires either a NuGetApiKey
* or MyGetApiKey environment variable to be set to the API key to use when
* publishing.
* Docs
* Builds the documentation and if on the build server and building the master branch,
* publishes the documentation to GitHub pages. This requires Git to be installed and
* in the PATH and for the server to have write access to the GitHub repository.
* Default - Test, NuGetPush, Docs
* Performs a complete build of everything.
*/
#tool nuget:?package=xunit.runner.console
#tool nuget:?package=OpenCover
#tool nuget:?package=ReportGenerator
#tool nuget:?package=GitVersion.CommandLine
#tool coveralls.net
#tool docfx.console
#tool "nuget:?package=GitReleaseNotes"
#tool "KuduSync.NET"
#addin Cake.Coveralls
#addin nuget:?package=Cake.Git
#addin Cake.DocFx
#addin Cake.Kudu
var forceDocPublish = HasArgument("forceDocPublish");
var updateAssemblyInfo = HasArgument("updateassemblyinfo") || isRunningOnBuildServer;
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var solution = File("Testify.sln");
var isRunningOnBuildServer = AppVeyor.IsRunningOnAppVeyor;
var solutions = GetFiles("**/*.sln") - GetFiles("**/packages/**/*.sln") - GetFiles("**/tools/**/*.sln");
var testResultsDir = Directory("./TestResults");
var coverageFile = testResultsDir + File("coverage.xml");
var releaseNuGetSource = "https://www.nuget.org/api/v2/package";
var releaseNuGetApiKey = EnvironmentVariable("NuGetApiKey");
var unstableNuGetSource = "https://www.myget.org/F/wekempf/api/v2/package";
var unstableNuGetApiKey = EnvironmentVariable("MyGetApiKey");
var personalAccessToken = Argument("personalAccessToken", EnvironmentVariable("GitHubPersonalAccessToken"));
var gitPagesRepo = $"https://wekempf:{personalAccessToken}@github.com/wekempf/testify.git";
var gitPagesBranch = "gh-pages";
var branch = EnvironmentVariable("APPVEYOR_REPO_BRANCH") ?? GitBranchCurrent(".").FriendlyName;
Information("Branch: " + branch);
GitVersion version = null;
Task("Clean")
.Does(() =>
{
CleanDirectories("**/bin");
CleanDirectories("**/obj");
CleanDirectory("packages");
CleanDirectory("TestResults");
CleanDirectory("./docs/_site");
if (FileExists("./docs/site.zip")) {
DeleteFile("./docs/site.zip");
}
var files = GetFiles("./docs/api/*") - GetFiles("./docs/api/index.md") - GetFiles("./docs/api/toc.yml");
DeleteFiles(files);
});
Task("Restore")
.Does(() =>
{
var settings = GetMSBuildSettings();
settings.Targets.Add("Restore");
foreach (var sln in solutions) {
MSBuild(sln, settings);
}
});
Task("Version")
.Does(() =>
{
var settings = new GitVersionSettings
{
UpdateAssemblyInfo = updateAssemblyInfo,
};
version = GitVersion(settings);
if (isRunningOnBuildServer) {
settings.OutputType = GitVersionOutput.BuildServer;
GitVersion(settings);
}
Information("Version: {0}", version.NuGetVersion);
if (updateAssemblyInfo) {
Information("Updated assembly information.");
}
});
Task("Build")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("Version")
.Does(() =>
{
var settings = GetMSBuildSettings();
foreach (var sln in solutions) {
MSBuild(sln, settings);
}
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
EnsureDirectoryExists(testResultsDir);
var projects = GetFiles("src/**/*.Tests.csproj");
foreach (var project in projects)
{
var settings = new DotNetCoreTestSettings
{
Configuration = configuration,
NoBuild = true
};
OpenCover(
tool => tool.DotNetCoreTest(project.FullPath, settings),
coverageFile,
new OpenCoverSettings
{
ReturnTargetCodeOffset = 0,
OldStyle = true,
Register = "user",
MergeOutput = FileExists(coverageFile)
}
.WithFilter("+[*]*")
.WithFilter("-[*.Tests]*")
.WithFilter("-[xunit.*]*"));
}
if (FileExists(coverageFile)) {
if (isRunningOnBuildServer) {
var coverallsSettings = new CoverallsNetSettings {
RepoToken = EnvironmentVariable("CoverallsToken")
};
CoverallsNet(coverageFile, CoverallsNetReportType.OpenCover, coverallsSettings);
} else {
ReportGenerator(coverageFile, testResultsDir);
}
}
});
Task("Push")
.IsDependentOn("Test")
.Does(() =>
{
if (!isRunningOnBuildServer) {
Warning("Not running on build server. Skipping");
return;
}
NuGetPushSettings settings = null;
if (branch == "master") {
Information("Pushing release package.");
settings = new NuGetPushSettings {
Source = releaseNuGetSource,
ApiKey = releaseNuGetApiKey
};
} else {
Information("Pushing unstable package.");
settings = new NuGetPushSettings {
Source = unstableNuGetSource,
ApiKey = unstableNuGetApiKey
};
}
Information("Pushing to " + settings.Source + ".");
var packages = GetFiles("src/**/*.nupkg");
foreach (var package in packages) {
Information("Pushing package " + package.FullPath + ".");
}
NuGetPush(packages, settings);
});
Task("Docs")
.Does(() =>
{
var settings = new DocFxBuildSettings {
WorkingDirectory = "./docs"
};
DocFxBuild(settings);
Zip("./docs/_site", "./docs/site.zip");
if ((isRunningOnBuildServer && branch == "master") || forceDocPublish) {
var pagesDirectory = "./pages";
Information($"Cloning {gitPagesRepo} pages branch to '{pagesDirectory}'...");
GitClone(gitPagesRepo, pagesDirectory, new GitCloneSettings { BranchName = gitPagesBranch });
try {
Information("Sync output files...");
Kudu.Sync("./docs/_site", pagesDirectory, new KuduSyncSettings {
ArgumentCustomization = args => args.Append("--ignore").AppendQuoted(".git;CNAME")
});
Information("Stage all changes...");
GitAddAll(pagesDirectory);
Information("Commit all changes...");
var sourceCommit = GitLogTip("./");
try {
GitCommit(
pagesDirectory,
sourceCommit.Committer.Name,
sourceCommit.Committer.Email,
string.Format("CI Build Publish: {0}\r\n{1}", sourceCommit.Sha, sourceCommit.Message));
}
catch (LibGit2Sharp.EmptyCommitException) {
}
Information("Publishing all changes...");
GitPush(pagesDirectory);
} finally {
Information("Cleaning up pages clone...");
DeleteDirectory(pagesDirectory, new DeleteDirectorySettings { Recursive = true, Force = true });
}
}
})
.ReportError(exception =>
Warning(exception)
);
Task("Default")
.IsDependentOn("Push")
.IsDependentOn("Docs");
RunTarget(target);
MSBuildSettings GetMSBuildSettings() {
var settings = new MSBuildSettings
{
Configuration = configuration,
};
if (version != null) {
settings.Properties.Add("AssemblyVersion", new[] { version.AssemblySemVer });
settings.Properties.Add("FileVersion", new[] { version.MajorMinorPatch + ".0" });
settings.Properties.Add("Version", new[] { version.NuGetVersion });
}
return settings;
}