-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.cake
85 lines (76 loc) · 2.08 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
public record BuildData(
string Project,
DirectoryPath ArtifactsPath,
string Configuration,
string Version
)
{
public DotNetMSBuildSettings MSBuildSettings { get; } =
new DotNetMSBuildSettings {
Version = Version
}.SetConfiguration(Configuration);
}
Setup(context => new BuildData(
"src",
"./artifacts",
"Release",
GitHubActions.IsRunningOnGitHubActions
? FormattableString.Invariant($"{DateTime.UtcNow:yyyy.MM.dd}.{GitHubActions.Environment.Workflow.RunNumber}")
: "1.0.0.0"
));
Task("Restore")
.Does<BuildData>(
(context, data) => DotNetRestore(
data.Project,
new DotNetRestoreSettings {
MSBuildSettings = data.MSBuildSettings
}
)
);
Task("Build")
.IsDependentOn("Restore")
.Does<BuildData>(
(context, data) => DotNetBuild(
data.Project,
new DotNetBuildSettings {
MSBuildSettings = data.MSBuildSettings,
NoRestore = true
}
)
);
Task("Test")
.IsDependentOn("Build")
.Does<BuildData>(
(context, data) =>DotNetTest(
data.Project,
new DotNetTestSettings {
Configuration = data.Configuration,
NoBuild = true,
NoRestore = true
}
)
);
Task("Pack")
.IsDependentOn("Test")
.Does<BuildData>(
(context, data) => DotNetPack(
data.Project,
new DotNetPackSettings {
MSBuildSettings = data.MSBuildSettings,
NoBuild = true,
NoRestore = true,
OutputDirectory = data.ArtifactsPath
}
)
);
Task("Publish")
.IsDependentOn("Pack")
.Does<BuildData>(
(context, data) => GitHubActions.Commands.UploadArtifact(
data.ArtifactsPath,
$"dotnetdays{Context.Environment.Platform.Family}"
)
);
Task("GitHubActions")
.IsDependentOn("Publish");
RunTarget(Argument("target","Pack"));