forked from olsh/dotnet-consolidate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.cake
More file actions
104 lines (85 loc) · 2.61 KB
/
build.cake
File metadata and controls
104 lines (85 loc) · 2.61 KB
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
#tool nuget:?package=MSBuild.SonarQube.Runner.Tool&version=4.8.0
#addin nuget:?package=Cake.Sonar&version=1.1.25
var target = Argument("target", "Default");
var buildConfiguration = "Release";
var projectName = "DotNet.Consolidate";
var testProjectName = "DotNet.Consolidate.Tests";
var projectFolder = string.Format("./src/{0}/", projectName);
var solutionFile = string.Format("./src/{0}.sln", projectName);
var projectFile = string.Format("./src/{0}/{0}.csproj", projectName);
var testProjectFile = string.Format("./src/{0}/{0}.csproj", testProjectName);
var nuGetPackageId = "dotnet-consolidate";
var extensionsVersion = XmlPeek(projectFile, "Project/PropertyGroup[1]/VersionPrefix/text()");
Task("UpdateBuildVersion")
.WithCriteria(BuildSystem.AppVeyor.IsRunningOnAppVeyor)
.Does(() =>
{
var buildNumber = BuildSystem.AppVeyor.Environment.Build.Number;
BuildSystem.AppVeyor.UpdateBuildVersion(string.Format("{0}.{1}", extensionsVersion, buildNumber));
});
Task("Build")
.Does(() =>
{
var settings = new DotNetCoreBuildSettings
{
Configuration = buildConfiguration
};
DotNetCoreBuild(solutionFile, settings);
});
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
var settings = new DotNetCoreTestSettings
{
Configuration = buildConfiguration
};
DotNetCoreTest(testProjectFile, settings);
});
Task("SonarBegin")
.Does(() => {
SonarBegin(new SonarBeginSettings {
Url = "https://sonarcloud.io",
Login = EnvironmentVariable("sonar:apikey"),
Key = "dotnet-consolidate",
Name = "dotnet consolidate",
ArgumentCustomization = args => args
.Append("/o:olsh-github"),
Version = extensionsVersion
});
});
Task("SonarEnd")
.Does(() => {
SonarEnd(new SonarEndSettings {
Login = EnvironmentVariable("sonar:apikey")
});
});
Task("NugetPack")
.Does(() =>
{
var settings = new DotNetCorePackSettings
{
Configuration = buildConfiguration,
OutputDirectory = "."
};
DotNetCorePack(projectFolder, settings);
});
Task("CreateArtifact")
.IsDependentOn("NugetPack")
.WithCriteria(BuildSystem.AppVeyor.IsRunningOnAppVeyor)
.Does(() =>
{
BuildSystem.AppVeyor.UploadArtifact(string.Format("{0}.{1}.nupkg", nuGetPackageId, extensionsVersion));
});
Task("Default")
.IsDependentOn("NugetPack");
Task("Sonar")
.IsDependentOn("SonarBegin")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("SonarEnd");
Task("CI")
.IsDependentOn("UpdateBuildVersion")
.IsDependentOn("Sonar")
.IsDependentOn("CreateArtifact");
RunTarget(target);