Skip to content

Commit ea4d914

Browse files
authored
Merge pull request #34 from muehlhaus/developer
Fix CI
2 parents e6832b8 + 67f7781 commit ea4d914

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for:
1515
- image: Visual Studio 2019
1616

1717
build_script:
18-
- cmd: build.cmd
18+
- cmd: build.cmd -t CIBuild
1919
-
2020
matrix:
2121
only:

build.fsx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@ Target.create "BuildReleasePackages" (fun _ ->
229229
ReleaseNotes = release.Notes |> String.toLines })
230230
)
231231

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+
232241
Target.create "PublishNuget" (fun _ ->
233242
Paket.push(fun p ->
234243
{ p with
@@ -305,6 +314,7 @@ Target.create "CIBuild" ignore
305314
Target.create "BuildOnly" ignore
306315
Target.create "DotnetCoreBuild" ignore
307316

317+
308318
"Clean"
309319
==> "CleanDocs"
310320
==> "AssemblyInfo"
@@ -325,6 +335,15 @@ Target.create "DotnetCoreBuild" ignore
325335
==> "BuildReleasePackages"
326336
==> "All"
327337

338+
"Clean"
339+
==> "CleanDocs"
340+
==> "AssemblyInfo"
341+
==> "Build"
342+
==> "CopyBinaries"
343+
==> "RunTests"
344+
==> "BuildCIPackages"
345+
==> "CIBuild"
346+
328347
"Clean"
329348
==> "CleanDocs"
330349
==> "AssemblyInfo"

0 commit comments

Comments
 (0)