-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.cake
More file actions
30 lines (22 loc) · 744 Bytes
/
Copy pathbuild.cake
File metadata and controls
30 lines (22 loc) · 744 Bytes
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
#load nuget:?package=Cake.Dungeon&prerelease
Build.SetParameters
(
title: "BoardGame.Dungeon",
defaultLog: true,
runBuildSolutions: true,
runDockerBuild: true,
runUnitTests: true,
runTestCoverageReports: true,
runPublishToDocker: true,
sourceDirectory: Build.Directories.Root,
unitTestProjectPatterns: new[] { "Tests/*.csproj" },
unitTestLoggers: new[] { "console;verbosity=detailed", "junit" },
buildEmbedAllSources: true,
dockerBuildCache: true,
dockerBuildLoad: true,
dockerBuildPull: true,
dockerPushLatest: true,
dockerPushSkipDuplicate: true,
dockerImages: new[] { new DockerImage { Repository = "dockfool/boardgame-dungeon", Context = "Cli" } }
);
Build.Run();