-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
235 lines (186 loc) · 6.19 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
233
234
235
#tool "nuget:?package=ReportGenerator&version=4.0.5"
#tool "nuget:?package=JetBrains.dotCover.CommandLineTools&version=2020.2.4"
#tool "nuget:?package=GitVersion.CommandLine&version=4.0.0"
var target = Argument("Target", "Full");
var skipVerification = Argument<bool>("SkipVerification", false);
Setup<BuildState>(_ =>
{
var state = new BuildState
{
Paths = new BuildPaths
{
SolutionFile = GetSolutionFile()
}
};
CleanDirectory(state.Paths.OutputFolder);
Information($"SkipVerification: {skipVerification}");
return state;
});
Task("Version")
.Does<BuildState>(state =>
{
var version = GitVersion();
state.Version = new VersionInfo
{
PackageVersion = version.SemVer,
AssemblyVersion = $"{version.SemVer}+{version.Sha.Substring(0, 8)}",
BuildVersion = $"{version.FullSemVer}+{version.Sha.Substring(0, 8)}-{DateTimeOffset.UtcNow:yyyyMMddHHmmss}"
};
Information($"Package version: {state.Version.PackageVersion}");
Information($"Assembly version: {state.Version.AssemblyVersion}");
Information($"Build version: {state.Version.BuildVersion}");
if (BuildSystem.IsRunningOnAppVeyor)
{
AppVeyor.UpdateBuildVersion(state.Version.BuildVersion);
}
});
Task("Restore")
.Does<BuildState>(state =>
{
var settings = new DotNetCoreRestoreSettings
{
};
DotNetCoreRestore(state.Paths.SolutionFile.ToString(), settings);
});
Task("Verify")
.WithCriteria(!skipVerification)
.IsDependentOn("Restore")
.Does<BuildState>(state =>
{
var settings = new DotNetCoreBuildSettings
{
Configuration = "Debug",
NoRestore = true,
MSBuildSettings = new DotNetCoreMSBuildSettings()
.WithProperty("TreatWarningsAsErrors", "True")
};
DotNetCoreBuild(state.Paths.SolutionFile.ToString(), settings);
});
Task("Build")
.IsDependentOn("Restore")
.Does<BuildState>(state =>
{
var settings = new DotNetCoreBuildSettings
{
Configuration = "Debug",
NoRestore = true
};
DotNetCoreBuild(state.Paths.SolutionFile.ToString(), settings);
});
Task("RunTests")
.IsDependentOn("Build")
.Does<BuildState>(state =>
{
var settings = new DotNetCoreTestSettings
{
NoBuild = true,
NoRestore = true,
Loggers = new[] { $"nunit;LogFilePath={state.Paths.TestOutputFolder.FullPath}/{{assembly}}/{{framework}}/TestResults.xml" },
Filter = "TestCategory!=External"
};
DotNetCoreTest(state.Paths.SolutionFile.ToString(), settings);
});
Task("UploadTestsToAppVeyor")
.IsDependentOn("RunTests")
.WithCriteria(BuildSystem.IsRunningOnAppVeyor)
.Does<BuildState>(state =>
{
Information("Uploading test result files to AppVeyor");
var testResultFiles = GetFiles($"{state.Paths.TestOutputFolder}/**/TestResults.xml");
foreach (var file in testResultFiles)
{
Information($"\tUploading {file.GetFilename()}");
try
{
AppVeyor.UploadTestResults(file, AppVeyorTestResultsType.NUnit);
}
catch
{
Error($"Failed to upload {file.GetFilename()}");
}
}
});
Task("Test")
.IsDependentOn("RunTests")
.IsDependentOn("UploadTestsToAppVeyor");
Task("PackLibraries")
.IsDependentOn("Version")
.IsDependentOn("Restore")
.Does<BuildState>(state =>
{
var settings = new DotNetCorePackSettings
{
Configuration = "Release",
NoRestore = true,
OutputDirectory = state.Paths.OutputFolder,
IncludeSymbols = true,
MSBuildSettings = new DotNetCoreMSBuildSettings()
.SetInformationalVersion(state.Version.AssemblyVersion)
.SetVersion(state.Version.PackageVersion)
.WithProperty("ContinuousIntegrationBuild", "true"),
};
if (skipVerification)
{
settings.MSBuildSettings.WithProperty("TreatWarningsAsErrors", "False");
}
DotNetCorePack(state.Paths.SolutionFile.ToString(), settings);
});
Task("Pack")
.IsDependentOn("PackLibraries");
Task("UploadPackagesToAppVeyor")
.IsDependentOn("Pack")
.WithCriteria(BuildSystem.IsRunningOnAppVeyor)
.Does<BuildState>(state =>
{
Information("Uploading packages");
var files = GetFiles($"{state.Paths.OutputFolder}/*.nukpg");
foreach (var file in files)
{
Information($"\tUploading {file.GetFilename()}");
AppVeyor.UploadArtifact(file, new AppVeyorUploadArtifactsSettings {
ArtifactType = AppVeyorUploadArtifactType.NuGetPackage,
DeploymentName = "NuGet"
});
}
});
Task("Push")
.IsDependentOn("UploadPackagesToAppVeyor");
Task("Full")
.IsDependentOn("Version")
.IsDependentOn("Restore")
.IsDependentOn("Verify")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Pack")
.IsDependentOn("Push");
RunTarget(target);
private FilePath GetSolutionFile()
{
var solutionFilesInRoot = GetFiles("./*.sln");
var solutionFile = solutionFilesInRoot.FirstOrDefault();
if (solutionFile == null) throw new ArgumentNullException("No solution file found");
return solutionFile;
}
public class BuildState
{
public VersionInfo Version { get; set; }
public BuildPaths Paths { get; set; }
}
public class BuildPaths
{
public FilePath SolutionFile { get; set; }
public DirectoryPath SolutionFolder => SolutionFile.GetDirectory();
public DirectoryPath TestFolder => SolutionFolder.Combine("tests");
public DirectoryPath OutputFolder => SolutionFolder.Combine("outputs");
public DirectoryPath TestOutputFolder => OutputFolder.Combine("tests");
public DirectoryPath ReportFolder => TestOutputFolder.Combine("report");
public FilePath DotCoverOutputFile => TestOutputFolder.CombineWithFilePath("coverage.dcvr");
public FilePath DotCoverOutputFileXml => TestOutputFolder.CombineWithFilePath("coverage.xml");
public FilePath OpenCoverResultFile => OutputFolder.CombineWithFilePath("OpenCover.xml");
}
public class VersionInfo
{
public string PackageVersion { get; set; }
public string AssemblyVersion { get; set; }
public string BuildVersion { get; set; }
}