forked from andrewlock/StronglyTypedId
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
92 lines (82 loc) · 3.34 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
// Kudos to Muhammed Rehan Saeed for this script!
// http://rehansaeed.com/cross-platform-devops-net-core/
// Target - The task you want to start. Runs the Default task if not specified.
var target = Argument("Target", "Default");
var configuration = Argument("Configuration", "Release");
Information("Running target " + target + " in configuration " + configuration);
// The build number to use in the version number of the built NuGet packages.
// There are multiple ways this value can be passed, this is a common pattern.
// 1. If command line parameter parameter passed, use that.
// 2. Otherwise if running on AppVeyor, get it's build number.
// 3. Otherwise if running on Travis CI, get it's build number.
// 4. Otherwise if an Environment variable exists, use that.
// 5. Otherwise default the build number to 0.
var buildNumber =
HasArgument("BuildNumber") ? Argument<int>("BuildNumber") :
AppVeyor.IsRunningOnAppVeyor ? AppVeyor.Environment.Build.Number :
TravisCI.IsRunningOnTravisCI ? TravisCI.Environment.Build.BuildNumber :
EnvironmentVariable("BuildNumber") != null ? int.Parse(EnvironmentVariable("BuildNumber")) : 1;
// Assume we're building on appveyor for publishing NuGets
// So always add a beta prefix if not doing a tag
var isTag = EnvironmentVariable("APPVEYOR_REPO_TAG") != null && EnvironmentVariable("APPVEYOR_REPO_TAG") == "true" ;
var revision = isTag ? null : "beta-" + buildNumber.ToString("D4");
// A directory path to an Artifacts directory.
var artifactsDirectory = Directory("./artifacts");
// Deletes the contents of the Artifacts folder if it should contain anything from a previous build.
Task("Clean")
.Does(() =>
{
DotNetCoreClean(".");
CleanDirectory(artifactsDirectory);
});
// Run dotnet restore to restore all package references.
Task("Restore")
.IsDependentOn("Clean")
.Does(() =>
{
DotNetCoreRestore();
});
// Find all sln files and build them using the build configuration specified as an argument.
Task("Build")
.IsDependentOn("Restore")
.Does(() =>
{
var solutions = GetFiles("./*.sln");
foreach(var solution in solutions)
{
Information("Building solution " + solution);
DotNetCoreBuild(
solution.ToString(),
new DotNetCoreBuildSettings()
{
NoRestore = true,
Configuration = configuration,
VersionSuffix = revision,
});
}
});
// Look under a 'Tests' folder and run dotnet test against all of those projects.
Task("Test")
.IsDependentOn("Build")
.Does(() =>
{
var projects = GetFiles("./test/**/*Tests.csproj");
foreach(var project in projects)
{
Information("Testing project " + project);
DotNetCoreTest(
project.ToString(),
new DotNetCoreTestSettings()
{
Configuration = configuration,
NoBuild = true,
NoRestore = true,
});
}
});
// The default task to run if none is explicitly specified. In this case, we want
// to run everything starting from Clean, all the way up to Pack.
Task("Default")
.IsDependentOn("Test");
// Executes the task specified in the target argument.
RunTarget(target);