You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.WithCriteria<BuildParameters>((context,parameters)=>!parameters.IsRunningOnMacOS,"Artifacts-Prepare can be tested only on Windows or Linux agents.")
5
+
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnAzurePipeline,"Artifacts-Prepare works only on AzurePipeline.")
6
+
.IsDependentOnWhen("Pack-Nuget",singleStageRun)
7
+
.Does<BuildParameters>((parameters)=>
8
+
{
9
+
RunGitVersionOnCI(parameters);
10
+
});
11
+
3
12
Task("Artifacts-DotnetTool-Test")
4
13
.WithCriteria<BuildParameters>((context,parameters)=>!parameters.IsRunningOnMacOS,"Artifacts-DotnetTool-Test can be tested only on Windows or Linux agents.")
5
14
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnAzurePipeline,"Artifacts-DotnetTool-Test works only on AzurePipeline.")
.WithCriteria<BuildParameters>((context,parameters)=>!parameters.IsRunningOnMacOS,"Artifacts-MsBuild-Test can be tested only on Windows or Linux agents.")
23
32
.WithCriteria<BuildParameters>((context,parameters)=>parameters.IsRunningOnAzurePipeline,"Artifacts-MsBuild-Test works only on AzurePipeline.")
0 commit comments