File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 15
15
- image : Visual Studio 2019
16
16
17
17
build_script :
18
- - cmd : build.cmd
18
+ - cmd : build.cmd -t CIBuild
19
19
-
20
20
matrix :
21
21
only :
Original file line number Diff line number Diff line change @@ -229,6 +229,15 @@ Target.create "BuildReleasePackages" (fun _ ->
229
229
ReleaseNotes = release.Notes |> String.toLines })
230
230
)
231
231
232
+ Target.create " BuildCIPackages" ( fun _ ->
233
+ Paket.pack( fun p ->
234
+ { p with
235
+ ToolType = ToolType.CreateLocalTool()
236
+ OutputPath = pkgDir
237
+ Version = sprintf " %s -appveyor.%s " release.NugetVersion BuildServer.appVeyorBuildVersion
238
+ ReleaseNotes = release.Notes |> String.toLines })
239
+ )
240
+
232
241
Target.create " PublishNuget" ( fun _ ->
233
242
Paket.push( fun p ->
234
243
{ p with
@@ -305,6 +314,7 @@ Target.create "CIBuild" ignore
305
314
Target.create " BuildOnly" ignore
306
315
Target.create " DotnetCoreBuild" ignore
307
316
317
+
308
318
" Clean"
309
319
==> " CleanDocs"
310
320
==> " AssemblyInfo"
@@ -325,6 +335,15 @@ Target.create "DotnetCoreBuild" ignore
325
335
==> " BuildReleasePackages"
326
336
==> " All"
327
337
338
+ " Clean"
339
+ ==> " CleanDocs"
340
+ ==> " AssemblyInfo"
341
+ ==> " Build"
342
+ ==> " CopyBinaries"
343
+ ==> " RunTests"
344
+ ==> " BuildCIPackages"
345
+ ==> " CIBuild"
346
+
328
347
" Clean"
329
348
==> " CleanDocs"
330
349
==> " AssemblyInfo"
You can’t perform that action at this time.
0 commit comments