-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.fsx
461 lines (370 loc) · 14.3 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
#r "paket: groupref build //"
#load ".fake/build.fsx/intellisense.fsx"
#r "netstandard"
open System
open System.IO
open Fake.Core
open Fake.JavaScript
open Fake.DotNet
open Fake.IO
open Fake.IO.FileSystemOperators
open Fake.IO.Globbing.Operators
open Fake.Core.TargetOperators
open Fake.Tools.Git
open Fake.Api
type ToolDir =
/// Global tool dir must be in PATH - ${PATH}:/root/.dotnet/tools
| Global
/// Just a dir name, the location will be used as: ./{LocalDirName}
| Local of string
// ========================================================================================================
// === F# / VS Code Extension fake build ========================================================== 1.1.0 =
// --------------------------------------------------------------------------------------------------------
// Options:
// - no-lint - lint will be executed, but the result is not validated
// --------------------------------------------------------------------------------------------------------
// Table of contents:
// 1. Information about project, configuration
// 2. Utilities, DotnetCore functions
// 3. FAKE targets
// 4. FAKE targets hierarchy
// ========================================================================================================
// --------------------------------------------------------------------------------------------------------
// 1. Information about the project to be used at NuGet and in AssemblyInfo files and other FAKE configuration
// --------------------------------------------------------------------------------------------------------
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitOwner = "TypedUseCase"
let gitHome = "https://github.com/" + gitOwner
// The name of the project on GitHub
let gitName = "tuc-extension"
// let languageServerDir = "../language-server" // local dir for developing
let languageServerDir = "paket-files/github.com/TypedUseCase/language-server"
let archiveDir = "dist"
// Read additional information from the release notes document
let release = ReleaseNotes.parse (System.IO.File.ReadAllLines "CHANGELOG.md" |> Seq.filter ((<>) "## Unreleased"))
let toolsDir = Global
// --------------------------------------------------------------------------------------------------------
// 2. Utilities, DotnetCore functions, etc.
// --------------------------------------------------------------------------------------------------------
[<AutoOpen>]
module private Utils =
let tee f a =
f a
a
let skipOn option action p =
if p.Context.Arguments |> Seq.contains option
then Trace.tracefn "Skipped ..."
else action p
module private DotnetCore =
let run cmd workingDir =
let options =
DotNet.Options.withWorkingDirectory workingDir
>> DotNet.Options.withRedirectOutput true
DotNet.exec options cmd ""
let runOrFail cmd workingDir =
run cmd workingDir
|> tee (fun result ->
if result.ExitCode <> 0 then failwithf "'dotnet %s' failed in %s" cmd workingDir
)
|> ignore
let runInRoot cmd = run cmd "."
let runInRootOrFail cmd = runOrFail cmd "."
let installOrUpdateTool toolDir tool =
let toolCommand action =
match toolDir with
| Global -> sprintf "tool %s --global %s" action tool
| Local dir -> sprintf "tool %s --tool-path ./%s %s" action dir tool
match runInRoot (toolCommand "install") with
| { ExitCode = code } when code <> 0 ->
match runInRoot (toolCommand "update") with
| { ExitCode = code } when code <> 0 -> Trace.tracefn "Warning: Install and update of %A has failed." tool
| _ -> ()
| _ -> ()
let execute command args (dir: string) =
let cmd =
sprintf "%s/%s"
(dir.TrimEnd('/'))
command
let processInfo = System.Diagnostics.ProcessStartInfo(cmd)
processInfo.RedirectStandardOutput <- true
processInfo.RedirectStandardError <- true
processInfo.UseShellExecute <- false
processInfo.CreateNoWindow <- true
processInfo.Arguments <- args |> String.concat " "
use proc =
new System.Diagnostics.Process(
StartInfo = processInfo
)
if proc.Start() |> not then failwith "Process was not started."
proc.WaitForExit()
if proc.ExitCode <> 0 then failwithf "Command '%s' failed in %s." command dir
(proc.StandardOutput.ReadToEnd(), proc.StandardError.ReadToEnd())
let stringToOption = function
| null | "" -> None
| string -> Some string
let run cmd args dir =
let parms = { ExecParams.Empty with Program = cmd; WorkingDir = dir; CommandLine = args }
if Process.shellExec parms <> 0 then
failwithf "Error while running '%s' with args: %s" cmd args
let platformTool tool path =
match Environment.isUnix with
| true -> tool
| _ -> match ProcessUtils.tryFindFileOnPath path with
| None -> failwithf "can't find tool %s on PATH" tool
| Some v -> v
let npmTool =
platformTool "npm" "npm.cmd"
let vsceTool = lazy (platformTool "vsce" "vsce.cmd")
let runFable additionalArgs =
let cmd = "webpack " + additionalArgs
Yarn.exec cmd id
[<RequireQualifiedAccess>]
module ProjectSources =
let release dir =
!! (dir </> "*.vsix")
let localRelease =
release "./temp"
let tests =
!! "tests/*.fsproj"
let all =
!! "src/**/*.fsproj"
++ "tests/*.fsproj"
let copyLanguageServer releaseBin languageServerBin =
Directory.ensure releaseBin
Shell.cleanDir releaseBin
Shell.copyDir releaseBin languageServerBin (fun _ -> true)
let copyGrammar grammarDir grammarRelease =
Directory.ensure grammarRelease
Shell.cleanDir grammarRelease
Shell.copyFiles grammarRelease [
grammarDir </> "tuc.tmLanguage.json"
]
let copySchemas fsschemaDir fsschemaRelease =
Directory.ensure fsschemaRelease
Shell.cleanDir fsschemaRelease
Shell.copyFiles fsschemaRelease [
fsschemaDir </> "fableconfig.json"
fsschemaDir </> "wsconfig.json"
]
(* let copyLib libDir releaseDir =
Directory.ensure releaseDir
Shell.copyDir (releaseDir </> "x64") (libDir </> "x64") (fun _ -> true)
Shell.copyDir (releaseDir </> "x86") (libDir </> "x86") (fun _ -> true)
Shell.copyFiles releaseDir [
libDir </> "libe_sqlite3.so"
libDir </> "libe_sqlite3.dylib"
] *)
let buildPackage dir =
Process.killAllByName "vsce"
run vsceTool.Value "package" dir
ProjectSources.release dir
|> Seq.iter(Shell.moveFile "./temp/")
let setPackageJsonField name value releaseDir =
let fileName = sprintf "./%s/package.json" releaseDir
let lines =
File.ReadAllLines fileName
|> Seq.map (fun line ->
if line.TrimStart().StartsWith(sprintf "\"%s\":" name) then
let indent = line.Substring(0,line.IndexOf("\""))
sprintf "%s\"%s\": %s," indent name value
else line)
File.WriteAllLines(fileName,lines)
let setVersion (release: ReleaseNotes.ReleaseNotes) releaseDir =
let versionString = sprintf "\"%O\"" release.NugetVersion
setPackageJsonField "version" versionString releaseDir
let publishToGallery releaseDir =
let token =
match Environment.environVarOrDefault "vsce-token" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserPassword "VSCE Token: "
Process.killAllByName "vsce"
run vsceTool.Value (sprintf "publish --pat %s" token) releaseDir
let ensureGitUser user email =
match Fake.Tools.Git.CommandHelper.runGitCommand "." "config user.name" with
| true, [username], _ when username = user -> ()
| _, _, _ ->
Fake.Tools.Git.CommandHelper.directRunGitCommandAndFail "." (sprintf "config user.name %s" user)
Fake.Tools.Git.CommandHelper.directRunGitCommandAndFail "." (sprintf "config user.email %s" email)
let releaseGithub (release: ReleaseNotes.ReleaseNotes) =
let user =
match Environment.environVarOrDefault "github-user" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserInput "Username: "
let email =
match Environment.environVarOrDefault "user-email" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserInput "Email: "
let pw =
match Environment.environVarOrDefault "github-pw" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserPassword "Password: "
let remote =
CommandHelper.getGitResult "" "remote -v"
|> Seq.filter (fun (s: string) -> s.EndsWith("(push)"))
|> Seq.tryFind (fun (s: string) -> s.Contains(gitOwner + "/" + gitName))
|> function None -> gitHome + "/" + gitName | Some (s: string) -> s.Split().[0]
Staging.stageAll ""
ensureGitUser user email
Commit.exec "." (sprintf "Version %s" release.NugetVersion)
Branches.pushBranch "" remote "master"
Branches.tag "" release.NugetVersion
Branches.pushTag "" remote release.NugetVersion
// release on github
let cl =
GitHub.createClient user pw
|> GitHub.draftNewRelease gitOwner gitName release.NugetVersion (release.SemVer.PreRelease <> None) release.Notes
(cl, ProjectSources.localRelease)
||> Seq.fold (fun acc e -> acc |> GitHub.uploadFile e)
|> GitHub.publishDraft//releaseDraft
|> Async.RunSynchronously
let releaseLocal archiveDir =
Directory.ensure archiveDir
ProjectSources.localRelease
|> Seq.iter (Shell.moveFile archiveDir)
// --------------------------------------------------------------------------------------------------------
// 3. Targets for FAKE
// --------------------------------------------------------------------------------------------------------
Target.initEnvironment ()
Target.create "Clean" (fun _ ->
Shell.cleanDir "./temp"
Shell.copyFiles "release" ["README.md"; "LICENSE"]
Shell.copyFile "release/CHANGELOG.md" "CHANGELOG.md"
)
Target.create "Lint" <| skipOn "no-lint" (fun _ ->
DotnetCore.installOrUpdateTool toolsDir "dotnet-fsharplint"
let checkResult (messages: string list) =
let rec check: string list -> unit = function
| [] -> failwithf "Lint does not yield a summary."
| head :: rest ->
if head.Contains "Summary" then
match head.Replace("= ", "").Replace(" =", "").Replace("=", "").Replace("Summary: ", "") with
| "0 warnings" -> Trace.tracefn "Lint: OK"
| warnings -> failwithf "Lint ends up with %s." warnings
else check rest
messages
|> List.rev
|> check
ProjectSources.all
|> Seq.map (fun fsproj ->
match toolsDir with
| Global ->
DotnetCore.runInRoot (sprintf "fsharplint lint %s" fsproj)
|> fun (result: ProcessResult) -> result.Messages
| Local dir ->
DotnetCore.execute "dotnet-fsharplint" ["lint"; fsproj] dir
|> fst
|> tee (Trace.tracefn "%s")
|> String.split '\n'
|> Seq.toList
)
|> Seq.iter checkResult
)
Target.create "YarnInstall" <| fun _ ->
Yarn.install id
Target.create "DotNetRestore" <| fun _ ->
DotNet.restore id "src"
Target.create "Watch" (fun _ ->
runFable "--mode development --watch"
)
Target.create "InstallVSCE" ( fun _ ->
Process.killAllByName "npm"
run npmTool "install -g vsce" ""
)
Target.create "CopyDocs" (fun _ ->
Shell.copyFiles "release" ["README.md"; "LICENSE"]
Shell.copyFile "release/CHANGELOG.md" "CHANGELOG.md"
)
Target.create "RunScript" (fun _ ->
runFable "--mode production"
)
Target.create "RunDevScript" (fun _ ->
runFable "--mode development"
)
Target.create "CopyLanguageServer" (fun _ ->
let languageServerBin = sprintf "%s/bin/Release" languageServerDir
let releaseBin = "release/bin"
copyLanguageServer releaseBin languageServerBin
)
Target.create "CopyGrammar" (fun _ ->
let fsgrammarDir = "grammars"
let fsgrammarRelease = "release/syntaxes"
copyGrammar fsgrammarDir fsgrammarRelease
)
Target.create "CopySchemas" (fun _ ->
let fsschemaDir = "schemas"
let fsschemaRelease = "release/schemas"
copySchemas fsschemaDir fsschemaRelease
)
(* Target.create "CopyLib" (fun _ ->
let libDir = "lib"
let releaseDir = "release/bin"
copyLib libDir releaseDir
) *)
Target.create "BuildPackage" ( fun _ ->
buildPackage "release"
)
Target.create "SetVersion" (fun _ ->
setVersion release "release"
)
Target.create "PublishToGallery" ( fun _ ->
publishToGallery "release"
)
Target.create "PublishToGalleryLocal" ( fun _ ->
// this task is same as "PublishToGallery", but im not sure about task dependencies atm, so it is here only to able to run "ReleaseLocal" without a "ReleaseGitHub"
publishToGallery "release"
)
Target.create "ReleaseGitHub" (fun _ ->
releaseGithub release
)
Target.create "ReleaseLocal" (fun _ ->
releaseLocal archiveDir
)
// --------------------------------------------------------------------------------------------------------
// 4. FAKE targets hierarchy
// --------------------------------------------------------------------------------------------------------
Target.create "Default" ignore
Target.create "Build" ignore
Target.create "BuildDev" ignore
Target.create "BuildExp" ignore
Target.create "Release" ignore
Target.create "BuildPackages" ignore
Target.create "Tests" ignore
"CopyGrammar" ==> "RunScript"
"YarnInstall" ==> "RunScript"
"DotNetRestore" ==> "RunScript"
"Clean"
==> "RunScript"
==> "Default"
"Clean"
==> "RunScript"
==> "CopyDocs"
==> "CopyLanguageServer"
==> "CopySchemas"
//==> "CopyLib"
==> "Build"
"YarnInstall" ==> "Build"
"DotNetRestore" ==> "Build"
"Lint" ==> "Tests"
"Build"
==> "Tests"
==> "SetVersion"
==> "BuildPackage"
==> "ReleaseGitHub"
==> "PublishToGallery"
==> "Release"
"Build"
==> "Tests"
==> "SetVersion"
==> "BuildPackage"
==> "PublishToGalleryLocal"
==> "ReleaseLocal"
"CopyGrammar" ==> "Watch"
"YarnInstall" ==> "Watch"
"DotNetRestore" ==> "Watch"
"CopyGrammar" ==> "RunDevScript"
"YarnInstall" ==> "RunDevScript"
"DotNetRestore" ==> "RunDevScript"
"RunDevScript"
==> "BuildDev"
Target.runOrDefault "Default"