-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrecipe.cake
24 lines (18 loc) · 1.11 KB
/
recipe.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
#load nuget:?package=Cake.Recipe&version=3.0.1
Environment.SetVariableNames();
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
title: "Cake.Gulp",
repositoryOwner: "cake-contrib",
repositoryName: "Cake.Gulp",
appVeyorAccountName: "cakecontrib",
shouldRunInspectCode: false,
shouldRunDotNetCorePack: true,
shouldRunCoveralls: false); // Disabled because it's currently failing
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context,
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Shouldly]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
Build.RunDotNetCore();