Skip to content

Commit

Permalink
Merge pull request #34 from muehlhaus/developer
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
kMutagene authored Apr 9, 2020
2 parents e6832b8 + 67f7781 commit ea4d914
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for:
- image: Visual Studio 2019

build_script:
- cmd: build.cmd
- cmd: build.cmd -t CIBuild
-
matrix:
only:
Expand Down
19 changes: 19 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,15 @@ Target.create "BuildReleasePackages" (fun _ ->
ReleaseNotes = release.Notes |> String.toLines })
)

Target.create "BuildCIPackages" (fun _ ->
Paket.pack(fun p ->
{ p with
ToolType = ToolType.CreateLocalTool()
OutputPath = pkgDir
Version = sprintf "%s-appveyor.%s" release.NugetVersion BuildServer.appVeyorBuildVersion
ReleaseNotes = release.Notes |> String.toLines })
)

Target.create "PublishNuget" (fun _ ->
Paket.push(fun p ->
{ p with
Expand Down Expand Up @@ -305,6 +314,7 @@ Target.create "CIBuild" ignore
Target.create "BuildOnly" ignore
Target.create "DotnetCoreBuild" ignore


"Clean"
==> "CleanDocs"
==> "AssemblyInfo"
Expand All @@ -325,6 +335,15 @@ Target.create "DotnetCoreBuild" ignore
==> "BuildReleasePackages"
==> "All"

"Clean"
==> "CleanDocs"
==> "AssemblyInfo"
==> "Build"
==> "CopyBinaries"
==> "RunTests"
==> "BuildCIPackages"
==> "CIBuild"

"Clean"
==> "CleanDocs"
==> "AssemblyInfo"
Expand Down

0 comments on commit ea4d914

Please sign in to comment.