-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.fsx
576 lines (481 loc) · 18.9 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
open System.IO.Compression
#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
open Fantomas
open Fantomas.Extras.FakeHelpers
BuildServer.install [
AppVeyor.Installer
Travis.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 = "BinaryDefense.FSharp.Analyzers"
let sln = "BinaryDefense.FSharp.Analyzers.sln"
let srcCodeGlob =
!! (__SOURCE_DIRECTORY__ @@ "src/**/*.fs")
++ (__SOURCE_DIRECTORY__ @@ "src/**/*.fsx")
let testsCodeGlob =
!! (__SOURCE_DIRECTORY__ @@ "tests/**/*.fs")
++ (__SOURCE_DIRECTORY__ @@ "tests/**/*.fsx")
let srcGlob =__SOURCE_DIRECTORY__ @@ "src/**/*.??proj"
let testsGlob = __SOURCE_DIRECTORY__ @@ "tests/**/*.??proj"
let srcAndTest =
!! srcGlob
++ testsGlob
let distDir = __SOURCE_DIRECTORY__ @@ "dist"
let distGlob = distDir @@ "*.nupkg"
let coverageThresholdPercent = 1
let coverageReportDir = __SOURCE_DIRECTORY__ @@ "docs" @@ "coverage"
let docsDir = __SOURCE_DIRECTORY__ @@ "docs"
let docsSrcDir = __SOURCE_DIRECTORY__ @@ "docsSrc"
let docsToolDir = __SOURCE_DIRECTORY__ @@ "docsTool"
let gitOwner = "BinaryDefense"
let gitRepoName = "BinaryDefense.FSharp.Analyzers"
let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName
let releaseBranch = "master"
let releaseNotes = Fake.Core.ReleaseNotes.load "RELEASE_NOTES.md"
let publishUrl = "https://www.nuget.org"
let docsSiteBaseUrl = sprintf "https://%s.github.io/%s" gitOwner gitRepoName
let disableCodeCoverage = environVarAsBoolOrDefault "DISABLE_COVERAGE" true
let ``BD_NUGET_TOKEN`` = "BD_NUGET_TOKEN"
let nugetApiKey = Environment.environVarOrNone ``BD_NUGET_TOKEN``
nugetApiKey |> Option.iter (fun n -> TraceSecrets.register ``BD_NUGET_TOKEN`` n)
//-----------------------------------------------------------------------------
// 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 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
[<AllowNullLiteral>]
type private DisposableDirectory (directory : string) =
static member Create() =
let tempPath = IO.Path.Combine(IO.Path.GetTempPath(), Guid.NewGuid().ToString("n"))
Trace.tracefn "Creating disposable directory %s" tempPath
IO.Directory.CreateDirectory tempPath |> ignore
new DisposableDirectory(tempPath)
member x.DirectoryInfo = IO.DirectoryInfo(directory)
interface IDisposable with
member x.Dispose() =
Trace.tracefn "Deleting disposable directory %s" x.DirectoryInfo.FullName
IO.Directory.Delete(x.DirectoryInfo.FullName,true)
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 releaseNotes.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 releaseNotes.NugetVersion
]
|> watchparser.PrintCommandLineArgumentsFlat
let watch projectpath =
dotnet.watch (fun args ->
{ args with WorkingDirectory = docsToolDir }
) "run" (sprintf "-- watch %s" (watchCLI))
|> failOnBadExitAndPrint
//-----------------------------------------------------------------------------
// Target Implementations
//-----------------------------------------------------------------------------
let clean _ =
["bin"; "temp" ; distDir; coverageReportDir]
|> Shell.cleanDirs
!! srcGlob
++ testsGlob
|> 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 -> fun () ->
let args =
[
sprintf "/p:PackageVersion=%s" releaseNotes.NugetVersion
] |> String.concat " "
DotNet.restore(fun c ->
{ c with
Common =
c.Common
|> DotNet.Options.withCustomParams
(Some(args))
}) dir)
|> Seq.iter(retryIfInCI 10)
let replacements =
[ "FsLibLog\\n", "BinaryDefense.Logging\n"
"FsLibLog\\.", "BinaryDefense.Logging." ]
let fslibLogGlobs = !! "paket-files/TheAngryByrd/FsLibLog/**/FsLibLog*.fs"
let replaceTemplateFiles _ =
replacements
|> List.iter (fun (``match``, replace) ->
Shell.regexReplaceInFilesWithEncoding
``match``
replace
Text.Encoding.UTF8 (fslibLogGlobs))
let dotnetBuild ctx =
let args =
[
sprintf "/p:PackageVersion=%s" releaseNotes.NugetVersion
"--no-restore"
]
DotNet.build(fun c ->
{ c with
Configuration = configuration (ctx.Context.AllExecutingTargets)
Common =
c.Common
|> DotNet.Options.withAdditionalArgs args
}) sln
let dotnetTest ctx =
let excludeCoverage =
!! testsGlob
|> 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
]
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 -> fun () ->
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 generateAssemblyInfo _ =
let (|Fsproj|Csproj|Vbproj|) (projFileName:string) =
match projFileName with
| f when f.EndsWith("fsproj") -> Fsproj
| f when f.EndsWith("csproj") -> Csproj
| f when f.EndsWith("vbproj") -> Vbproj
| _ -> failwith (sprintf "Project file %s not supported. Unknown project type." projFileName)
let releaseChannel =
match releaseNotes.SemVer.PreRelease with
| Some pr -> pr.Name
| _ -> "release"
let getAssemblyInfoAttributes projectName =
[
AssemblyInfo.Title (projectName)
AssemblyInfo.Product productName
AssemblyInfo.Version releaseNotes.AssemblyVersion
AssemblyInfo.Metadata("ReleaseDate", releaseNotes.Date.Value.ToString("o"))
AssemblyInfo.FileVersion releaseNotes.AssemblyVersion
AssemblyInfo.InformationalVersion releaseNotes.AssemblyVersion
AssemblyInfo.Metadata("ReleaseChannel", releaseChannel)
AssemblyInfo.Metadata("GitHash", Git.Information.getCurrentSHA1(null))
]
let getProjectDetails (projectPath : string) =
let projectName = IO.Path.GetFileNameWithoutExtension(projectPath)
(
projectPath,
projectName,
IO.Path.GetDirectoryName(projectPath),
(getAssemblyInfoAttributes projectName)
)
srcAndTest
|> Seq.map getProjectDetails
|> Seq.iter (fun (projFileName, _, folderName, attributes) ->
match projFileName with
| Fsproj -> AssemblyInfoFile.createFSharp (folderName @@ "AssemblyInfo.fs") attributes
| Csproj -> AssemblyInfoFile.createCSharp ((folderName @@ "Properties") @@ "AssemblyInfo.cs") attributes
| Vbproj -> AssemblyInfoFile.createVisualBasic ((folderName @@ "My Project") @@ "AssemblyInfo.vb") attributes
)
let dotnetPack ctx =
// Analyzers need some additional work to bundle 3rd party dependencies: see https://github.com/ionide/FSharp.Analyzers.SDK#packaging-and-distribution
let publishFramework = "net5.0"
let args =
[
sprintf "/p:PackageVersion=%s" releaseNotes.NugetVersion
sprintf "/p:PackageReleaseNotes=\"%s\"" (releaseNotes.Notes |> String.concat "\n")
]
!! srcGlob
|> Seq.iter(fun proj ->
let configuration = configuration (ctx.Context.AllExecutingTargets)
DotNet.pack (fun c ->
{ c with
Configuration = configuration
OutputPath = Some distDir
Common =
c.Common
|> DotNet.Options.withAdditionalArgs args
}) proj
DotNet.publish (fun c ->
{ c with
Configuration = configuration
Framework = Some publishFramework
}) proj
let nupkg =
let projectName = IO.Path.GetFileNameWithoutExtension proj
IO.Directory.GetFiles distDir
|> Seq.filter(fun path -> path.Contains projectName)
|> Seq.tryExactlyOne
|> Option.defaultWith(fun () -> failwithf "Could not find corresponsiding nuget package with name containing %s" projectName )
|> IO.FileInfo
let publishPath = IO.FileInfo(proj).Directory.FullName </> "bin" </> (string configuration) </> publishFramework </> "publish"
use dd = DisposableDirectory.Create()
// Unzip the nuget
ZipFile.ExtractToDirectory(nupkg.FullName, dd.DirectoryInfo.FullName)
// delete the initial nuget package
nupkg.Delete()
// remove stuff from ./lib/netcoreapp2.0
Shell.deleteDir (dd.DirectoryInfo.FullName </> "lib" </> publishFramework)
// move the output of publish folder into the ./lib/netcoreapp2.0 directory
Shell.copyDir (dd.DirectoryInfo.FullName </> "lib" </> publishFramework) publishPath (fun _ -> true)
// re-create the nuget package
ZipFile.CreateFromDirectory(dd.DirectoryInfo.FullName, nupkg.FullName)
)
let publishToNuget _ =
isReleaseBranchCheck ()
Paket.push(fun c ->
{ c with
ApiKey = Option.defaultValue c.ApiKey nugetApiKey
ToolType = ToolType.CreateLocalTool()
PublishUrl = publishUrl
WorkingDir = "dist"
}
)
let gitRelease _ =
isReleaseBranchCheck ()
let releaseNotesGitCommitFormat = releaseNotes.Notes |> Seq.map(sprintf "* %s\n") |> String.concat ""
Git.Staging.stageAll ""
Git.Commit.exec "" (sprintf "Bump version to %s \n%s" releaseNotes.NugetVersion releaseNotesGitCommitFormat)
Git.Branches.push ""
Git.Branches.tag "" releaseNotes.NugetVersion
Git.Branches.pushTag "" "origin" releaseNotes.NugetVersion
let githubRelease _ =
let token =
match Environment.environVarOrDefault "GITHUB_TOKEN" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> failwith "please set the github_token environment variable to a github personal access token with repro access."
let files = !! distGlob
GitHub.createClientWithToken token
|> GitHub.draftNewRelease gitOwner gitRepoName releaseNotes.NugetVersion (releaseNotes.SemVer.PreRelease <> None) releaseNotes.Notes
|> GitHub.uploadFiles files
|> GitHub.publishDraft
|> Async.RunSynchronously
let formatCode _ =
[
srcCodeGlob
testsCodeGlob
]
|> Seq.collect id
// Ignore AssemblyInfo
|> Seq.filter(fun f -> f.EndsWith("AssemblyInfo.fs") |> not)
|> formatFilesAsync
|> Async.RunSynchronously
|> Seq.iter(fun result ->
match result with
| Formatted(original, tempfile) ->
tempfile |> Shell.copyFile original
Trace.logfn "Formatted %s" original
| _ -> ()
)
let buildDocs _ =
DocsTool.build ()
let watchDocs _ =
let watchBuild () =
!! srcGlob
|> Seq.map(fun proj -> fun () ->
dotnet.watch
(fun opt ->
opt |> DotNet.Options.withWorkingDirectory (IO.Path.GetDirectoryName proj))
"build"
""
|> ignore
)
|> Seq.iter (invokeAsync >> Async.Catch >> Async.Ignore >> Async.Start)
watchBuild ()
DocsTool.watch ()
let releaseDocs ctx =
isReleaseBranchCheck ()
Git.Staging.stageAll docsDir
Git.Commit.exec "" (sprintf "Documentation release of version %s" releaseNotes.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 "ReplaceTemplateFilesNamespace" replaceTemplateFiles
Target.create "DotnetBuild" dotnetBuild
Target.create "DotnetTest" dotnetTest
Target.create "GenerateCoverageReport" generateCoverageReport
Target.create "WatchTests" watchTests
Target.create "GenerateAssemblyInfo" generateAssemblyInfo
Target.create "DotnetPack" dotnetPack
Target.create "PublishToNuGet" publishToNuget
Target.create "GitRelease" gitRelease
Target.create "GitHubRelease" githubRelease
Target.create "FormatCode" formatCode
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 AssemblyInfo if Publish was in the call chain
// Ensure AssemblyInfo is called after DotnetRestore and before DotnetBuild
"DotnetRestore" ?=> "GenerateAssemblyInfo"
"GenerateAssemblyInfo" ?=> "DotnetBuild"
"GenerateAssemblyInfo" ==> "PublishToNuGet"
"DotnetRestore" ==> "ReplaceTemplateFilesNamespace"
"ReplaceTemplateFilesNamespace" ==> "DotnetBuild"
"DotnetBuild" ==> "BuildDocs"
"BuildDocs" ==> "ReleaseDocs"
"BuildDocs" ?=> "PublishToNuget"
"DotnetPack" ?=> "BuildDocs"
"GenerateCoverageReport" ?=> "ReleaseDocs"
"DotnetBuild" ==> "WatchDocs"
"DotnetRestore"
==> "DotnetBuild"
==> "DotnetTest"
=?> ("GenerateCoverageReport", not disableCodeCoverage)
==> "DotnetPack"
==> "PublishToNuGet"
==> "GitRelease"
==> "GitHubRelease"
==> "Release"
"DotnetRestore"
==> "WatchTests"
//-----------------------------------------------------------------------------
// Target Start
//-----------------------------------------------------------------------------
Target.runOrDefaultWithArguments "DotnetPack"