-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.fsx
316 lines (268 loc) · 11.6 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
#r "paket:
nuget BlackFox.Fake.BuildTask
nuget Fake.Core.Target
nuget Fake.Core.Process
nuget Fake.Core.ReleaseNotes
nuget Fake.IO.FileSystem
nuget Fake.DotNet.Cli
nuget Fake.DotNet.MSBuild
nuget Fake.DotNet.AssemblyInfoFile
nuget Fake.DotNet.Paket
nuget Fake.DotNet.FSFormatting
nuget Fake.DotNet.Fsi
nuget Fake.DotNet.NuGet
nuget Fake.Api.Github
nuget Fake.DotNet.Testing.Expecto
nuget Fake.Tools.Git //"
#if !FAKE
#load "./.fake/build.fsx/intellisense.fsx"
#r "netstandard" // Temp fix for https://github.com/dotnet/fsharp/issues/5216
#endif
open BlackFox.Fake
open System.IO
open Fake.Core
open Fake.DotNet
open Fake.IO
open Fake.IO.FileSystemOperators
open Fake.IO.Globbing.Operators
open Fake.Tools
[<AutoOpen>]
/// user interaction prompts for critical build tasks where you may want to interrupt when you see wrong inputs.
module MessagePrompts =
let prompt (msg:string) =
System.Console.Write(msg)
System.Console.ReadLine().Trim()
|> function | "" -> None | s -> Some s
|> Option.map (fun s -> s.Replace ("\"","\\\""))
let rec promptYesNo msg =
match prompt (sprintf "%s [Yn]: " msg) with
| Some "Y" | Some "y" -> true
| Some "N" | Some "n" -> false
| _ -> System.Console.WriteLine("Sorry, invalid answer"); promptYesNo msg
let promptProj (msg: string) =
match prompt (sprintf "%s: " msg) with
| Some x -> x
| _ -> failwith ("Sorry, invalid answer")
let releaseMsg = """This will stage all uncommitted changes, push them to the origin and bump the release version to the latest number in the RELEASE_NOTES.md file.
Do you want to continue?"""
let releaseDocsMsg = """This will push the docs to gh-pages. Remember building the docs prior to this. Do you want to continue?"""
let projMsg = """Name of the project you want to build"""
/// Executes a dotnet command in the given working directory
let runDotNet cmd workingDir =
let result =
DotNet.exec (DotNet.Options.withWorkingDirectory workingDir) cmd ""
if result.ExitCode <> 0 then failwithf "'dotnet %s' failed in %s" cmd workingDir
/// Metadata about the project
module ProjectInfo =
let project = "MzIO"
let summary = "Generic data model to unify various readers and writers for different formats used in protein mass spectrometry"
let configuration = "Release"
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitOwner = "CSBiology"
let gitName = "MzIO"
let gitHome = sprintf "%s/%s" "https://github.com" gitOwner
let projectRepo = sprintf "%s/%s/%s" "https://github.com" gitOwner gitName
let website = "/MzIO"
let pkgDir = "pkg"
//let release = ReleaseNotes.load "RELEASE_NOTES.md"
//let stableVersion = SemVer.parse release.NugetVersion
//let stableVersionTag = (sprintf "%i.%i.%i" stableVersion.Major stableVersion.Minor stableVersion.Patch )
let mutable prereleaseSuffix = ""
let mutable prereleaseTag = ""
let mutable isPrerelease = false
let mutable projPattern = !! "src/**/*.*proj"
let testProject = "tests/MzIO.Tests/MzIO.Tests.fsproj"
/// Barebones, minimal build tasks
module BasicTasks =
open ProjectInfo
let setPrereleaseTag = BuildTask.create "SetPrereleaseTag" [] {
printfn "Please enter pre-release package suffix"
let suffix = System.Console.ReadLine()
prereleaseSuffix <- suffix
isPrerelease <- true
}
let clean = BuildTask.create "Clean" [] {
!! "src/**/bin"
++ "src/**/obj"
++ "pkg"
++ "bin"
|> Shell.cleanDirs
}
let build = BuildTask.create "Build" [clean] {
!! "src/**/*.*proj"
|> Seq.iter (DotNet.build id)
}
let buildProj =
BuildTask.create "BuildProj" [clean] {
let proj =
let rec loop (acc: IGlobbingPattern) =
if acc |> Seq.isEmpty then
printfn "Project doesn't exist. Try again."
let projName = promptProj projMsg
loop (!! (sprintf "src/**/%s.*proj" projName))
else
acc
loop (!! (sprintf "src/**/%s.*proj" (promptProj projMsg)))
projPattern <- proj
projPattern
|> Seq.iter (DotNet.build id)
}
let copyBinariesProj = BuildTask.create "CopyBinariesProj" [clean; buildProj] {
let targets =
projPattern
-- "src/**/*.shproj"
|> Seq.map (fun f -> ((Path.getDirectory f) </> "bin" </> configuration, "bin" </> (Path.GetFileNameWithoutExtension f)))
targets
|> Seq.iter (fun (fromDir, toDir) -> Shell.copyDir toDir fromDir (fun _ -> true)
)
}
let copyBinaries = BuildTask.create "CopyBinaries" [clean; build] {
let targets =
!! "src/**/*.??proj"
-- "src/**/*.shproj"
|> Seq.map (fun f -> ((Path.getDirectory f) </> "bin" </> configuration, "bin" </> (Path.GetFileNameWithoutExtension f)))
for i in targets do printfn "%A" i
targets
|> Seq.iter (fun (fromDir, toDir) -> Shell.copyDir toDir fromDir (fun _ -> true))
}
/// Test executing build tasks
module TestTasks =
open ProjectInfo
open BasicTasks
let runTests = BuildTask.create "RunTests" [] {
let standardParams = Fake.DotNet.MSBuild.CliArguments.Create ()
Fake.DotNet.DotNet.test(fun testParams ->
{
testParams with
Logger = Some "console;verbosity=detailed"
}
) testProject
}
let runTestsProj = BuildTask.create "RunTestsProj" [clean; buildProj; copyBinariesProj] {
let standardParams = Fake.DotNet.MSBuild.CliArguments.Create ()
Fake.DotNet.DotNet.test(fun testParams ->
{
testParams with
Logger = Some "console;verbosity=detailed"
}
) testProject
}
/// Package creation
module PackageTasks =
open ProjectInfo
open BasicTasks
open TestTasks
let pack = BuildTask.create "Pack" [clean; build; copyBinaries] {
if promptYesNo (sprintf "creating stable package OK?")
then
!! "src/**/*.*proj"
|> Seq.iter (fun projPath ->
let releaseNotePath = Path.Combine (Path.getDirectory projPath, "RELEASE_NOTES.md")
let release = ReleaseNotes.load releaseNotePath
let stableVersion = SemVer.parse release.NugetVersion
let stableVersionTag = (sprintf "%i.%i.%i" stableVersion.Major stableVersion.Minor stableVersion.Patch )
(Fake.DotNet.DotNet.pack (fun p ->
let msBuildParams =
{p.MSBuildParams with
Properties = ([
"Version",stableVersionTag
"PackageReleaseNotes", (release.Notes |> String.concat "\r\n")
] @ p.MSBuildParams.Properties)
}
{
p with
MSBuildParams = msBuildParams
OutputPath = Some pkgDir
}
)projPath
)
)
else failwith "aborted"
}
let packProj = BuildTask.create "PackProj" [clean; buildProj; copyBinariesProj] {
if promptYesNo (sprintf "creating stable package OK?")
then
projPattern
|> Seq.iter (fun projPath ->
let releaseNotePath = Path.Combine (Path.getDirectory projPath, "RELEASE_NOTES.md")
let release = ReleaseNotes.load releaseNotePath
let stableVersion = SemVer.parse release.NugetVersion
let stableVersionTag = (sprintf "%i.%i.%i" stableVersion.Major stableVersion.Minor stableVersion.Patch )
(Fake.DotNet.DotNet.pack (fun p ->
let msBuildParams =
{p.MSBuildParams with
Properties = ([
"Version",stableVersionTag
"PackageReleaseNotes", (release.Notes |> String.concat "\r\n")
] @ p.MSBuildParams.Properties)
}
{
p with
MSBuildParams = msBuildParams
OutputPath = Some pkgDir
}
)projPath
)
)
else failwith "aborted"
}
let packPrerelease = BuildTask.create "PackPrerelease" [setPrereleaseTag; clean; build; copyBinaries] {
if promptYesNo (sprintf "package suffix will be %s OK?" prereleaseSuffix )
then
!! "src/**/*.*proj"
//-- "src/**/Plotly.NET.Interactive.fsproj"
|> Seq.iter (fun projPath ->
let releaseNotePath = Path.Combine (Path.getDirectory projPath, "RELEASE_NOTES.md")
let release = ReleaseNotes.load releaseNotePath
prereleaseTag <- (sprintf "%s-%s" release.NugetVersion prereleaseSuffix)
(Fake.DotNet.DotNet.pack (fun p ->
let msBuildParams =
{p.MSBuildParams with
Properties = ([
"Version", prereleaseTag
"PackageReleaseNotes", (release.Notes |> String.toLines )
] @ p.MSBuildParams.Properties)
}
{
p with
VersionSuffix = Some prereleaseSuffix
OutputPath = Some pkgDir
MSBuildParams = msBuildParams
}
) projPath
)
)
else
failwith "aborted"
}
let packPrereleaseProj = BuildTask.create "PackPrereleaseProj" [setPrereleaseTag; clean; buildProj; copyBinariesProj] {
if promptYesNo (sprintf "package tag will be %s OK?" prereleaseTag )
then
projPattern
|> Seq.iter (fun projPath ->
let releaseNotePath = Path.Combine (Path.getDirectory projPath, "RELEASE_NOTES.md")
let release = ReleaseNotes.load releaseNotePath
prereleaseTag <- (sprintf "%s-%s" release.NugetVersion prereleaseSuffix)
(Fake.DotNet.DotNet.pack (fun p ->
let msBuildParams =
{p.MSBuildParams with
Properties = ([
"Version", prereleaseTag
"PackageReleaseNotes", (release.Notes |> String.toLines )
] @ p.MSBuildParams.Properties)
}
{
p with
VersionSuffix = Some prereleaseSuffix
OutputPath = Some pkgDir
MSBuildParams = msBuildParams
}
) projPath
)
)
else
failwith "aborted"
}
open BasicTasks
BuildTask.runOrDefault copyBinaries