@@ -37,13 +37,13 @@ Target "Clean" <| fun _ -> CleanDir Paths.BuildOutput
3737
3838Target " BuildApp" <| fun _ -> Build.Compile()
3939
40- Target " Test" <| fun _ -> Tests.RunUnitTests()
40+ Target " Test" <| fun _ -> Tests.RunUnitTests()
4141
42- Target " QuickTest" <| fun _ -> Tests.RunUnitTests()
42+ Target " QuickTest" <| fun _ -> Tests.RunUnitTests()
4343
44- Target " Integrate" <| fun _ -> Tests.RunIntegrationTests() ( getBuildParamOrDefault " esversions" " " )
44+ Target " Integrate" <| fun _ -> Tests.RunIntegrationTests() ( getBuildParamOrDefault " esversions" " " )
4545
46- Target " WatchTests" <| fun _ ->
46+ Target " WatchTests" <| fun _ ->
4747 traceFAKE " Starting quick test (incremental compile then test)"
4848 use watcher = (!! " src/Tests/**/*.cs" ) .And( " src/Tests/**/*.md" ) |> WatchChanges ( fun changes ->
4949 printfn " %A " changes
@@ -59,7 +59,7 @@ Target "Profile" <| fun _ -> Profiler.Run()
5959
6060Target " Benchmark" <| fun _ -> Benchmarker.Run()
6161
62- Target " QuickCompile" <| fun _ -> Build.QuickCompile()
62+ Target " QuickCompile" <| fun _ -> Build.QuickCompile()
6363
6464Target " Version" <| fun _ ->
6565 Versioning.PatchAssemblyInfos()
@@ -74,7 +74,8 @@ Target "Release" <| fun _ ->
7474Target " Canary" <| fun _ ->
7575 trace " Running canary build"
7676 let apiKey = ( getBuildParam " apikey" );
77- if ( not ( String.IsNullOrWhiteSpace apiKey) || apiKey = " ignore" ) then Release.PublishCanaryBuild apiKey
77+ let feed = ( getBuildParamOrDefault " feed" " elasticsearch-net" );
78+ if ( not ( String.IsNullOrWhiteSpace apiKey) || apiKey = " ignore" ) then Release.PublishCanaryBuild apiKey feed
7879
7980BuildFailureTarget " NotifyTestFailures" <| fun _ -> Tests.Notify() |> ignore
8081
0 commit comments