forked from awaescher/Fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
168 lines (137 loc) · 4.75 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
#addin "Cake.FileHelpers"
#tool "nuget:?package=OpenCover"
#tool "nuget:?package=NUnit.ConsoleRunner"
#tool "nuget:?package=GitVersion.CommandLine&version=4.0.0"
///////////////////////////////////////////////////////////////////////////////
// ARGUMENTS
///////////////////////////////////////////////////////////////////////////////
var target = Argument<string>("target", "Default");
var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
///////////////////////////////////////////////////////////////////////////////
var _solution = $"./Fusion++.sln";
var _appVersion = "";
var _outputDir = Directory($"_output");
var _testOutputDir = Directory($"_testOutput");
///////////////////////////////////////////////////////////////////////////////
// TASK DEFINITIONS
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
EnsureDirectoryExists(_outputDir);
CleanDirectory(_outputDir);
EnsureDirectoryExists(_testOutputDir);
CleanDirectory(_testOutputDir);
});
Task("Clean")
.Description("Cleans all directories that are used during the build process.")
.Does(() =>
{
CleanDirectories("./**/bin/" + configuration);
CleanDirectories("./**/obj/" + configuration);
});
Task("Restore")
.Description("Restores all the NuGet packages that are used by the specified solution.")
.Does(() =>
{
Information("Restoring {0}...", _solution);
NuGetRestore(_solution);
});
Task("SetVersion")
.IsDependentOn("Restore")
.Does(() =>
{
var gitVersion = GitVersion(new GitVersionSettings
{
UpdateAssemblyInfo = true
});
_appVersion = $"{gitVersion.Major}.{gitVersion.Minor}" + (gitVersion.Patch == 0 ? "" : $".{gitVersion.Patch}");
var fullVersion = gitVersion.AssemblySemVer;
Information($"AppVersion:\t{_appVersion}");
Information($"FullVersion:\t{fullVersion}");
});
Task("Build")
.Description("Builds all the different parts of the project.")
.IsDependentOn("Clean")
.IsDependentOn("Restore")
.IsDependentOn("SetVersion")
.Does(() =>
{
Information("Building {0}", _solution);
MSBuild(_solution, settings =>
settings.SetPlatformTarget(PlatformTarget.MSIL)
.SetMSBuildPlatform(MSBuildPlatform.x64)
.UseToolVersion(MSBuildToolVersion.VS2019)
.WithTarget("Build")
.SetConfiguration(configuration));
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
var assemblies = new[]
{
$"./Fusion++.Tests/bin/{configuration}/Fusion++.Tests.dll"
};
var testResultsFile = MakeAbsolute(File($"{_testOutputDir}/TestResults.xml")).FullPath;
var testCoverageFile = MakeAbsolute(File($"{_testOutputDir}/TestCoverage.xml")).FullPath;
Information("Test results xml: " + testResultsFile);
Information("Test coverage xml: " + testCoverageFile);
var openCoverSettings = new OpenCoverSettings()
.WithFilter("+[*]*")
.WithFilter("-[Specs]*")
.WithFilter("-[Tests]*")
.WithFilter("-[FluentAssertions*]*")
.WithFilter("-[Moq*]*");
openCoverSettings.ReturnTargetCodeOffset = 0;
var nunitSettings = new NUnit3Settings
{
Results = new[]
{
new NUnit3Result { FileName = testResultsFile }
},
NoHeader = true,
Configuration = "Default"
};
OpenCover(tool => tool.NUnit3(assemblies, nunitSettings),
new FilePath(testCoverageFile),
openCoverSettings
);
});
Task("Publish")
.IsDependentOn("Build")
.IsDependentOn("Test")
.Does(() =>
{
CopyFiles($"./Fusion++/bin/{configuration}/**/*", _outputDir, true);
foreach (var extension in new string[]{"pdb", "config", "xml"})
DeleteFiles(_outputDir.Path + "/*." + extension);
});
Task("Pack")
.IsDependentOn("Publish")
.Does(() =>
{
// get the app files BEFORE adding additional packed ones
var appFiles = GetFiles($"{_outputDir}/**/*");
ReplaceTextInFiles("_choco/fusionplusplus.nuspec", "{PRODUCT_VERSION}", _appVersion);
var settings = new ChocolateyPackSettings()
{
OutputDirectory = _outputDir,
Authors = { "Andreas Wäscher" },
Tags = { "fusion", "assembly", "FUSLOGVW", "binding", "foss", "utilities", "productivity" },
Version = _appVersion
};
ChocolateyPack("_choco/fusionplusplus.nuspec", settings);
Zip(_outputDir.Path, _outputDir.Path + $"/Fusion++ {_appVersion}.zip", appFiles);
});
///////////////////////////////////////////////////////////////////////////////
// TARGETS
///////////////////////////////////////////////////////////////////////////////
Task("Default")
.Description("This is the default task which will be ran if no specific target is passed in.")
.IsDependentOn("Pack");
///////////////////////////////////////////////////////////////////////////////
// EXECUTION
///////////////////////////////////////////////////////////////////////////////
RunTarget(target);