-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.fsx
715 lines (540 loc) · 22.5 KB
/
build.fsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
open Argu
#load ".fake/build.fsx/intellisense.fsx"
#load "docsTool/CLI.fs"
#if !FAKE
#r "Facades/netstandard"
#r "netstandard"
#endif
open System
open Fake.SystemHelper
open Fake.Core
open Fake.DotNet
open Fake.Tools
open Fake.IO
open Fake.IO.FileSystemOperators
open Fake.IO.Globbing.Operators
open Fake.Core.TargetOperators
open Fake.Api
open Fake.BuildServer
BuildServer.install [ GitHubActions.Installer ]
let environVarAsBoolOrDefault varName defaultValue =
let truthyConsts = [ "1"; "Y"; "YES"; "T"; "TRUE" ]
try
let envvar =
(Environment.environVar varName).ToUpper()
truthyConsts |> List.exists ((=) envvar)
with _ -> defaultValue
//-----------------------------------------------------------------------------
// Metadata and Configuration
//-----------------------------------------------------------------------------
let productName = "Giraffe.EndpointRouting.OpenAPI"
let sln = "Giraffe.EndpointRouting.OpenAPI.sln"
let srcCodeGlob =
!!(__SOURCE_DIRECTORY__ @@ "src/**/*.fs") ++ (__SOURCE_DIRECTORY__ @@ "src/**/*.fsx")
-- "**/obj/**/*.fs"
let sampleCodeGlob =
!!(__SOURCE_DIRECTORY__ @@ "sample/**/*.fs") ++ (__SOURCE_DIRECTORY__ @@ "sample/**/*.fsx")
-- "**/obj/**/*.fs"
let testsCodeGlob =
!!(__SOURCE_DIRECTORY__ @@ "tests/**/*.fs") ++ (__SOURCE_DIRECTORY__ @@ "tests/**/*.fsx")
-- "**/obj/**/*.fs"
let srcGlob =
__SOURCE_DIRECTORY__ @@ "src/**/*.??proj"
let testsGlob =
__SOURCE_DIRECTORY__ @@ "tests/**/*.??proj"
let samplesGlob =
__SOURCE_DIRECTORY__ @@ "sample/**/*.??proj"
let srcAndTest = !!srcGlob ++ testsGlob
let distDir = __SOURCE_DIRECTORY__ @@ "dist"
let distGlob = distDir @@ "*.nupkg"
let coverageThresholdPercent = 70
let coverageReportDir =
__SOURCE_DIRECTORY__ @@ "docs" @@ "coverage"
let docsDir = __SOURCE_DIRECTORY__ @@ "docs"
let docsSrcDir = __SOURCE_DIRECTORY__ @@ "docsSrc"
let docsToolDir = __SOURCE_DIRECTORY__ @@ "docsTool"
let gitOwner = "baronfel"
let gitRepoName = "Giraffe.EndpointRouting.OpenAPI"
let gitHubRepoUrl =
sprintf "https://github.com/%s/%s" gitOwner gitRepoName
let releaseBranch = "main"
let tagFromVersionNumber versionNumber = sprintf "v%s" versionNumber
let changelogFilename = "CHANGELOG.md"
let changelog =
Fake.Core.Changelog.load changelogFilename
let mutable latestEntry =
if Seq.isEmpty changelog.Entries then
Changelog.ChangelogEntry.New("0.0.1", "0.0.1-alpha.1", Some DateTime.Today, None, [], false)
else
changelog.LatestEntry
let mutable linkReferenceForLatestEntry = ""
let mutable changelogBackupFilename = ""
let publishUrl = "https://www.nuget.org"
let docsSiteBaseUrl =
sprintf "https://%s.github.io/%s" gitOwner gitRepoName
let disableCodeCoverage =
environVarAsBoolOrDefault "DISABLE_COVERAGE" true
let githubToken =
Environment.environVarOrNone "GITHUB_TOKEN"
Option.iter (TraceSecrets.register "<GITHUB_TOKEN>")
let nugetToken =
Environment.environVarOrNone "NUGET_TOKEN"
Option.iter (TraceSecrets.register "<NUGET_TOKEN>")
//-----------------------------------------------------------------------------
// Helpers
//-----------------------------------------------------------------------------
let isRelease (targets: Target list) =
targets |> Seq.map (fun t -> t.Name) |> Seq.exists ((=) "Release")
let invokeAsync f = async { f () }
let configuration (targets: Target list) =
let defaultVal =
if isRelease targets then "Release" else "Debug"
match Environment.environVarOrDefault "CONFIGURATION" defaultVal with
| "Debug" -> DotNet.BuildConfiguration.Debug
| "Release" -> DotNet.BuildConfiguration.Release
| config -> DotNet.BuildConfiguration.Custom config
let failOnBadExitAndPrint (p: ProcessResult) =
if p.ExitCode <> 0 then
p.Errors |> Seq.iter Trace.traceError
failwithf "failed with exitcode %d" p.ExitCode
// CI Servers can have bizzare failures that have nothing to do with your code
let rec retryIfInCI times fn =
match Environment.environVarOrNone "CI" with
| Some _ ->
if times > 1 then
try
fn ()
with _ -> retryIfInCI (times - 1) fn
else
fn ()
| _ -> fn ()
let isReleaseBranchCheck () =
if Git.Information.getBranchName "" <> releaseBranch then
failwithf "Not on %s. If you want to release please switch to this branch." releaseBranch
module Changelog =
let isEmptyChange =
function
| Changelog.Change.Added s
| Changelog.Change.Changed s
| Changelog.Change.Deprecated s
| Changelog.Change.Fixed s
| Changelog.Change.Removed s
| Changelog.Change.Security s
| Changelog.Change.Custom (_, s) -> String.IsNullOrWhiteSpace s.CleanedText
let isChangelogEmpty () =
let isEmpty =
(latestEntry.Changes |> Seq.forall isEmptyChange) || latestEntry.Changes |> Seq.isEmpty
if isEmpty then
failwith
"No changes in CHANGELOG. Please add your changes under a heading specified in https://keepachangelog.com/"
let mkLinkReference (newVersion: SemVerInfo) (changelog: Changelog.Changelog) =
if changelog.Entries |> List.isEmpty then
// No actual changelog entries yet: link reference will just point to the Git tag
sprintf "[%s]: %s/releases/tag/%s" newVersion.AsString gitHubRepoUrl (tagFromVersionNumber newVersion.AsString)
else
let versionTuple version =
(version.Major, version.Minor, version.Patch)
// Changelog entries come already sorted, most-recent first, by the Changelog module
let prevEntry =
changelog.Entries
|> List.skipWhile (fun entry ->
entry.SemVer.PreRelease.IsSome && versionTuple entry.SemVer = versionTuple newVersion
)
|> List.tryHead
let linkTarget =
match prevEntry with
| Some entry ->
sprintf
"%s/compare/%s...%s"
gitHubRepoUrl
(tagFromVersionNumber entry.SemVer.AsString)
(tagFromVersionNumber newVersion.AsString)
| None -> sprintf "%s/releases/tag/%s" gitHubRepoUrl (tagFromVersionNumber newVersion.AsString)
sprintf "[%s]: %s" newVersion.AsString linkTarget
let mkReleaseNotes (linkReference: string) (latestEntry: Changelog.ChangelogEntry) =
if String.isNullOrEmpty linkReference then
latestEntry.ToString()
else
// Add link reference target to description before building release notes, since in main changelog file it's at the bottom of the file
let description =
match latestEntry.Description with
| None -> linkReference
| Some desc when desc.Contains(linkReference) -> desc
| Some desc -> sprintf "%s\n\n%s" (desc.Trim()) linkReference
{ latestEntry with Description = Some description }
.ToString()
let getVersionNumber envVarName ctx =
let args = ctx.Context.Arguments
let verArg =
args |> List.tryHead |> Option.defaultWith (fun () -> Environment.environVarOrDefault envVarName "")
if SemVer.isValid verArg then
verArg
elif verArg.StartsWith("v") && SemVer.isValid verArg.[1..] then
let target = ctx.Context.FinalTarget
Trace.traceImportantfn
"Please specify a version number without leading 'v' next time, e.g. \"./build.sh %s %s\" rather than \"./build.sh %s %s\""
target
verArg.[1..]
target
verArg
verArg.[1..]
elif String.isNullOrEmpty verArg then
let target = ctx.Context.FinalTarget
Trace.traceErrorfn
"Please specify a version number, either at the command line (\"./build.sh %s 1.0.0\") or in the %s environment variable"
target
envVarName
failwith "No version number found"
else
Trace.traceErrorfn "Please specify a valid version number: %A could not be recognized as a version number" verArg
failwith "Invalid version number"
module dotnet =
let watch cmdParam program args =
DotNet.exec cmdParam (sprintf "watch %s" program) args
let run cmdParam args = DotNet.exec cmdParam "run" args
let tool optionConfig command args =
DotNet.exec optionConfig (sprintf "%s" command) args |> failOnBadExitAndPrint
let reportgenerator optionConfig args =
tool optionConfig "reportgenerator" args
let sourcelink optionConfig args = tool optionConfig "sourcelink" args
let fcswatch optionConfig args = tool optionConfig "fcswatch" args
let fsharpAnalyzer optionConfig args =
tool optionConfig "fsharp-analyzers" args
let fantomas optionConfig args = tool optionConfig "fantomas" args
module FSharpAnalyzers =
type Arguments =
| Project of string
| Analyzers_Path of string
| Fail_On_Warnings of string list
| Ignore_Files of string list
| Verbose
interface IArgParserTemplate with
member s.Usage = ""
open DocsTool.CLIArgs
module DocsTool =
open Argu
let buildparser =
ArgumentParser.Create<BuildArgs>(programName = "docstool")
let buildCLI () =
[ BuildArgs.SiteBaseUrl docsSiteBaseUrl
BuildArgs.ProjectGlob srcGlob
BuildArgs.DocsOutputDirectory docsDir
BuildArgs.DocsSourceDirectory docsSrcDir
BuildArgs.GitHubRepoUrl gitHubRepoUrl
BuildArgs.ProjectName gitRepoName
BuildArgs.ReleaseVersion latestEntry.NuGetVersion ]
|> buildparser.PrintCommandLineArgumentsFlat
let build () =
dotnet.run (fun args -> { args with WorkingDirectory = docsToolDir }) (sprintf " -- build %s" (buildCLI ()))
|> failOnBadExitAndPrint
let watchparser =
ArgumentParser.Create<WatchArgs>(programName = "docstool")
let watchCLI () =
[ WatchArgs.ProjectGlob srcGlob
WatchArgs.DocsSourceDirectory docsSrcDir
WatchArgs.GitHubRepoUrl gitHubRepoUrl
WatchArgs.ProjectName gitRepoName
WatchArgs.ReleaseVersion latestEntry.NuGetVersion ]
|> watchparser.PrintCommandLineArgumentsFlat
let watch () =
dotnet.watch (fun args -> { args with WorkingDirectory = docsToolDir }) "run" (sprintf "-- watch %s" (watchCLI ()))
|> failOnBadExitAndPrint
let allReleaseChecks () =
isReleaseBranchCheck ()
Changelog.isChangelogEmpty ()
//-----------------------------------------------------------------------------
// Target Implementations
//-----------------------------------------------------------------------------
let clean _ =
[ "bin"; "temp"; distDir; coverageReportDir ] |> Shell.cleanDirs
!!srcGlob ++ testsGlob ++ samplesGlob
|> Seq.collect (fun p -> [ "bin"; "obj" ] |> Seq.map (fun sp -> IO.Path.GetDirectoryName p @@ sp))
|> Shell.cleanDirs
[ "paket-files/paket.restore.cached" ] |> Seq.iter Shell.rm
let dotnetRestore _ =
[ sln ]
|> Seq.map (fun dir () ->
let args = [] |> String.concat " "
DotNet.restore (fun c -> { c with Common = c.Common |> DotNet.Options.withCustomParams (Some(args)) }) dir
)
|> Seq.iter (retryIfInCI 10)
let updateChangelog ctx =
let description, unreleasedChanges =
match changelog.Unreleased with
| None -> None, []
| Some u -> u.Description, u.Changes
let verStr =
ctx |> Changelog.getVersionNumber "RELEASE_VERSION"
let newVersion = SemVer.parse verStr
changelog.Entries
|> List.tryFind (fun entry -> entry.SemVer = newVersion)
|> Option.iter (fun entry ->
Trace.traceErrorfn
"Version %s already exists in %s, released on %s"
verStr
changelogFilename
(if entry.Date.IsSome then entry.Date.Value.ToString("yyyy-MM-dd") else "(no date specified)")
failwith "Can't release with a duplicate version number"
)
changelog.Entries
|> List.tryFind (fun entry -> entry.SemVer > newVersion)
|> Option.iter (fun entry ->
Trace.traceErrorfn
"You're trying to release version %s, but a later version %s already exists, released on %s"
verStr
entry.SemVer.AsString
(if entry.Date.IsSome then entry.Date.Value.ToString("yyyy-MM-dd") else "(no date specified)")
failwith "Can't release with a version number older than an existing release"
)
let versionTuple version =
(version.Major, version.Minor, version.Patch)
let prereleaseEntries =
changelog.Entries
|> List.filter (fun entry -> entry.SemVer.PreRelease.IsSome && versionTuple entry.SemVer = versionTuple newVersion)
let prereleaseChanges =
prereleaseEntries
|> List.collect (fun entry -> entry.Changes |> List.filter (not << Changelog.isEmptyChange))
let assemblyVersion, nugetVersion =
Changelog.parseVersions newVersion.AsString
linkReferenceForLatestEntry <- Changelog.mkLinkReference newVersion changelog
let newEntry =
Changelog.ChangelogEntry.New(
assemblyVersion.Value,
nugetVersion.Value,
Some System.DateTime.Today,
description,
unreleasedChanges @ prereleaseChanges,
false
)
let newChangelog =
Changelog.Changelog.New(changelog.Header, changelog.Description, None, newEntry :: changelog.Entries)
latestEntry <- newEntry
// Save changelog to temporary file before making any edits
changelogBackupFilename <- System.IO.Path.GetTempFileName()
changelogFilename |> Shell.copyFile changelogBackupFilename
Target.activateFinal "DeleteChangelogBackupFile"
newChangelog |> Changelog.save changelogFilename
// Now update the link references at the end of the file
linkReferenceForLatestEntry <- Changelog.mkLinkReference newVersion changelog
let linkReferenceForUnreleased =
sprintf "[Unreleased]: %s/compare/%s...%s" gitHubRepoUrl (tagFromVersionNumber newVersion.AsString) "HEAD"
let tailLines =
File.read changelogFilename |> List.ofSeq |> List.rev
let isRef line =
System.Text.RegularExpressions.Regex.IsMatch(line, @"^\[.+?\]:\s?[a-z]+://.*$")
let linkReferenceTargets =
tailLines |> List.skipWhile String.isNullOrWhiteSpace |> List.takeWhile isRef |> List.rev // Now most recent entry is at the head of the list
let newLinkReferenceTargets =
match linkReferenceTargets with
| [] -> [ linkReferenceForUnreleased; linkReferenceForLatestEntry ]
| first :: rest when first |> String.startsWith "[Unreleased]:" ->
linkReferenceForUnreleased :: linkReferenceForLatestEntry :: rest
| first :: rest -> linkReferenceForUnreleased :: linkReferenceForLatestEntry :: first :: rest
let blankLineCount =
tailLines |> Seq.takeWhile String.isNullOrWhiteSpace |> Seq.length
let linkRefCount = linkReferenceTargets |> List.length
let skipCount = blankLineCount + linkRefCount
let updatedLines =
List.rev (tailLines |> List.skip skipCount) @ newLinkReferenceTargets
File.write false changelogFilename updatedLines
// If build fails after this point but before we push the release out, undo our modifications
Target.activateBuildFailure "RevertChangelog"
let revertChangelog _ =
if String.isNotNullOrEmpty changelogBackupFilename then changelogBackupFilename |> Shell.copyFile changelogFilename
let deleteChangelogBackupFile _ =
if String.isNotNullOrEmpty changelogBackupFilename then Shell.rm changelogBackupFilename
let dotnetBuild ctx =
let args =
[ sprintf "/p:PackageVersion=%s" latestEntry.NuGetVersion; "--no-restore" ]
DotNet.build
(fun c ->
{ c with
Configuration = configuration (ctx.Context.AllExecutingTargets)
Common = c.Common |> DotNet.Options.withAdditionalArgs args
}
)
sln
let fsharpAnalyzers _ =
let argParser =
ArgumentParser.Create<FSharpAnalyzers.Arguments>(programName = "fsharp-analyzers")
!!srcGlob
|> Seq.iter (fun proj ->
let args =
[ FSharpAnalyzers.Analyzers_Path(__SOURCE_DIRECTORY__ </> "packages/analyzers")
FSharpAnalyzers.Arguments.Project proj
FSharpAnalyzers.Arguments.Fail_On_Warnings [ "BDH0002" ]
FSharpAnalyzers.Verbose ]
|> argParser.PrintCommandLineArgumentsFlat
dotnet.fsharpAnalyzer id args
)
let dotnetTest ctx =
let excludeCoverage =
!!testsGlob ++ samplesGlob |> Seq.map IO.Path.GetFileNameWithoutExtension |> String.concat "|"
let args =
[ "--no-build"
sprintf "/p:AltCover=%b" (not disableCodeCoverage)
sprintf "/p:AltCoverThreshold=%d" coverageThresholdPercent
sprintf "/p:AltCoverAssemblyExcludeFilter=%s" excludeCoverage
"/p:AltCoverLocalSource=true" ]
DotNet.test
(fun c ->
{ c with
Configuration = configuration (ctx.Context.AllExecutingTargets)
Common = c.Common |> DotNet.Options.withAdditionalArgs args }
)
sln
let generateCoverageReport _ =
let coverageReports =
!! "tests/**/coverage*.xml" |> String.concat ";"
let sourceDirs =
!!srcGlob |> Seq.map Path.getDirectory |> String.concat ";"
let independentArgs =
[ sprintf "-reports:\"%s\"" coverageReports
sprintf "-targetdir:\"%s\"" coverageReportDir
// Add source dir
sprintf "-sourcedirs:\"%s\"" sourceDirs
// Ignore Tests and if AltCover.Recorder.g sneaks in
sprintf "-assemblyfilters:\"%s\"" "-*.Tests;-AltCover.Recorder.g"
sprintf "-Reporttypes:%s" "Html" ]
let args = independentArgs |> String.concat " "
dotnet.reportgenerator id args
let watchTests _ =
!!testsGlob
|> Seq.map (fun proj () ->
dotnet.watch (fun opt -> opt |> DotNet.Options.withWorkingDirectory (IO.Path.GetDirectoryName proj)) "test" ""
|> ignore
)
|> Seq.iter (invokeAsync >> Async.Catch >> Async.Ignore >> Async.Start)
printfn "Press Ctrl+C (or Ctrl+Break) to stop..."
let cancelEvent =
Console.CancelKeyPress |> Async.AwaitEvent |> Async.RunSynchronously
cancelEvent.Cancel <- true
let dotnetPack ctx =
// Get release notes with properly-linked version number
let releaseNotes =
latestEntry |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
let args =
[ sprintf "/p:PackageVersion=%s" latestEntry.NuGetVersion; sprintf "/p:PackageReleaseNotes=\"%s\"" releaseNotes ]
DotNet.pack
(fun c ->
{ c with
Configuration = configuration (ctx.Context.AllExecutingTargets)
OutputPath = Some distDir
Common = c.Common |> DotNet.Options.withAdditionalArgs args }
)
sln
let sourceLinkTest _ =
!!distGlob |> Seq.iter (fun nupkg -> dotnet.sourcelink id (sprintf "test %s" nupkg))
let publishToNuget _ =
allReleaseChecks ()
Paket.push (fun c ->
{ c with
ToolType = ToolType.CreateLocalTool()
PublishUrl = publishUrl
WorkingDir = "dist"
ApiKey =
match nugetToken with
| Some s -> s
| _ -> c.ApiKey // assume paket-config was set properly
}
)
// If build fails after this point, we've pushed a release out with this version of CHANGELOG.md so we should keep it around
Target.deactivateBuildFailure "RevertChangelog"
let gitRelease _ =
allReleaseChecks ()
let releaseNotesGitCommitFormat = latestEntry.ToString()
Git.Staging.stageFile "" "CHANGELOG.md" |> ignore
Git.Commit.exec "" (sprintf "Bump version to %s\n\n%s" latestEntry.NuGetVersion releaseNotesGitCommitFormat)
Git.Branches.push ""
let tag =
tagFromVersionNumber latestEntry.NuGetVersion
Git.Branches.tag "" tag
Git.Branches.pushTag "" "origin" tag
let githubRelease _ =
allReleaseChecks ()
let token =
match githubToken with
| Some s -> s
| _ ->
failwith "please set the github_token environment variable to a github personal access token with repo access."
let files = !!distGlob
// Get release notes with properly-linked version number
let releaseNotes =
latestEntry |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
GitHub.createClientWithToken token
|> GitHub.draftNewRelease
gitOwner
gitRepoName
(tagFromVersionNumber latestEntry.NuGetVersion)
(latestEntry.SemVer.PreRelease <> None)
(releaseNotes |> Seq.singleton)
|> GitHub.uploadFiles files
|> GitHub.publishDraft
|> Async.RunSynchronously
let sourceFileList =
[ srcCodeGlob; testsCodeGlob ] |> Seq.collect id |> Seq.map (sprintf "\"%s\"") |> String.concat " "
let formatCode _ = dotnet.fantomas id sourceFileList
let checkFormat _ =
dotnet.fantomas id (sprintf "%s --check" sourceFileList)
let buildDocs _ = DocsTool.build ()
let watchDocs _ = DocsTool.watch ()
let releaseDocs ctx =
isReleaseBranchCheck () // Docs changes don't need a full release to the library
Git.Staging.stageAll docsDir
Git.Commit.exec "" (sprintf "Documentation release of version %s" latestEntry.NuGetVersion)
if isRelease (ctx.Context.AllExecutingTargets) |> not then
// We only want to push if we're only calling "ReleaseDocs" target
// If we're calling "Release" target, we'll let the "GitRelease" target do the git push
Git.Branches.push ""
//-----------------------------------------------------------------------------
// Target Declaration
//-----------------------------------------------------------------------------
Target.create "Clean" clean
Target.create "DotnetRestore" dotnetRestore
Target.create "UpdateChangelog" updateChangelog
Target.createBuildFailure "RevertChangelog" revertChangelog // Do NOT put this in the dependency chain
Target.createFinal "DeleteChangelogBackupFile" deleteChangelogBackupFile // Do NOT put this in the dependency chain
Target.create "DotnetBuild" dotnetBuild
Target.create "FSharpAnalyzers" fsharpAnalyzers
Target.create "DotnetTest" dotnetTest
Target.create "GenerateCoverageReport" generateCoverageReport
Target.create "WatchTests" watchTests
Target.create "DotnetPack" dotnetPack
Target.create "SourceLinkTest" sourceLinkTest
Target.create "PublishToNuGet" publishToNuget
Target.create "GitRelease" gitRelease
Target.create "GitHubRelease" githubRelease
Target.create "FormatCode" formatCode
Target.create "CheckFormat" checkFormat
Target.create "Release" ignore
Target.create "BuildDocs" buildDocs
Target.create "WatchDocs" watchDocs
Target.create "ReleaseDocs" releaseDocs
//-----------------------------------------------------------------------------
// Target Dependencies
//-----------------------------------------------------------------------------
// Only call Clean if DotnetPack was in the call chain
// Ensure Clean is called before DotnetRestore
"Clean" ?=> "DotnetRestore"
"Clean" ==> "DotnetPack"
// Only call UpdateChangelog if Publish was in the call chain
// Ensure UpdateChangelog is called after DotnetRestore and before GenerateAssemblyInfo
"DotnetRestore" ?=> "UpdateChangelog"
"UpdateChangelog" ==> "PublishToNuGet"
"BuildDocs" ==> "ReleaseDocs"
"BuildDocs" ?=> "PublishToNuget"
"DotnetPack" ?=> "BuildDocs"
"GenerateCoverageReport" ?=> "ReleaseDocs"
"DotnetRestore" ==> "CheckFormat" ==> "DotnetBuild" ==> "FSharpAnalyzers" ==> "DotnetTest"
=?> ("GenerateCoverageReport", not disableCodeCoverage)
==> "DotnetPack"
==> "SourceLinkTest"
==> "PublishToNuGet"
==> "GitRelease"
==> "GitHubRelease"
==> "Release"
"DotnetRestore" ==> "WatchTests"
//-----------------------------------------------------------------------------
// Target Start
//-----------------------------------------------------------------------------
Target.runOrDefaultWithArguments "DotnetPack"