-
-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathProgram.fs
More file actions
437 lines (344 loc) · 14 KB
/
Program.fs
File metadata and controls
437 lines (344 loc) · 14 KB
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
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
open System.Text.Json
// --------------------------------------------------------------------------------------
// Configuration
// --------------------------------------------------------------------------------------
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitOwner = "ionide"
let gitHome = "https://github.com/" + gitOwner
// The name of the project on GitHub
let gitName = "ionide-vscode-fsharp"
// Read additional information from the release notes document
let releaseNotesData = File.ReadAllLines "RELEASE_NOTES.md" |> ReleaseNotes.parseAll
let release = List.head releaseNotesData
let githubToken = Environment.environVarOrNone "GITHUB_TOKEN"
// --------------------------------------------------------------------------------------
// Helper functions
// --------------------------------------------------------------------------------------
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 npxTool = lazy (platformTool "npx" "npx.cmd")
module Fable =
type Command =
| Build
| Watch
| Clean
type Webpack =
| WithoutWebpack
| WithWebpack of args: string option
type Args =
{ Command: Command
Debug: bool
Experimental: bool
ProjectPath: string
OutDir: string option
Defines: string list
SourceMaps: bool
AdditionalFableArgs: string option
Webpack: Webpack }
let DefaultArgs =
{ Command = Build
Debug = false
Experimental = false
ProjectPath = "./src/Ionide.FSharp.fsproj"
OutDir = Some "./out"
Defines = []
AdditionalFableArgs = None
SourceMaps = true
Webpack = WithoutWebpack }
let private mkArgs args =
let fableCmd =
match args.Command with
| Build -> ""
| Watch -> "watch"
| Clean -> "clean"
let fableProjPath = args.ProjectPath
let fableDebug = if args.Debug then "--define DEBUG" else ""
let fableExperimental =
if args.Experimental then
"--define IONIDE_EXPERIMENTAL"
else
""
let fableOutDir =
match args.OutDir with
| Some dir -> sprintf "--outDir %s" dir
| None -> ""
let fableDefines =
args.Defines |> List.map (sprintf "--define %s") |> String.concat " "
let fableAdditionalArgs = args.AdditionalFableArgs |> Option.defaultValue ""
let webpackCmd =
match args.Webpack with
| WithoutWebpack -> ""
| WithWebpack webpackArgs ->
sprintf
"--%s webpack %s %s %s"
(match args.Command with
| Watch -> "runWatch"
| _ -> "run")
(if args.Debug then
"--mode=development"
else
"--mode=production")
(if args.Experimental then "--env.ionideExperimental" else "")
(webpackArgs |> Option.defaultValue "")
let sourceMaps = if args.SourceMaps then "-s" else ""
// $"{fableCmd} {fableProjPath} {sourcemaps} {fableOutDir} {fableDebug} {fableExperimental} {fableDefines} {fableAdditionalArgs} {webpackCmd}"
sprintf
"%s %s %s %s %s %s %s %s %s"
fableCmd
fableProjPath
sourceMaps
fableOutDir
fableDebug
fableExperimental
fableDefines
fableAdditionalArgs
webpackCmd
let run args =
let cmd = mkArgs args
let result = DotNet.exec id "fable" cmd
if not result.OK then
failwithf "Error while running 'dotnet fable' with args: %s" cmd
let copyFSACNetcore releaseBinNetcore fsacBinNetcore =
Directory.ensure releaseBinNetcore
Shell.cleanDir releaseBinNetcore
Shell.copyDir releaseBinNetcore fsacBinNetcore (fun _ -> true)
let copyGrammar fsgrammarDir fsgrammarRelease =
Directory.ensure fsgrammarRelease
Shell.cleanDir fsgrammarRelease
Shell.copyFiles
fsgrammarRelease
[ fsgrammarDir </> "fsharp.fsi.json"
fsgrammarDir </> "fsharp.fsl.json"
fsgrammarDir </> "fsharp.fsx.json"
fsgrammarDir </> "fsharp.json" ]
let copySchemas fsschemaDir fsschemaRelease =
Directory.ensure fsschemaRelease
Shell.cleanDir fsschemaRelease
Shell.copyFile fsschemaRelease (fsschemaDir </> "fableconfig.json")
Shell.copyFile fsschemaRelease (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.copyFile releaseDir (libDir </> "libe_sqlite3.so")
Shell.copyFile releaseDir (libDir </> "libe_sqlite3.dylib")
let buildPackage dir =
Process.killAllByName "npx"
run npxTool.Value "@vscode/vsce package" dir
!!(sprintf "%s/*.vsix" dir) |> Seq.iter (Shell.moveFile "./temp/")
let setPackageJsonField (name: string) (value: string) releaseDir =
let fileName = sprintf "./%s/package.json" releaseDir
let content = File.readAsString fileName
let jsonObj = System.Text.Json.JsonDocument.Parse content
let node = System.Text.Json.Nodes.JsonObject.Create jsonObj.RootElement
node[name] <- value
let opts = JsonSerializerOptions(WriteIndented = true, AllowTrailingCommas = false)
File.WriteAllText(fileName, node.ToJsonString(opts))
let setVersion (release: ReleaseNotes.ReleaseNotes) releaseDir =
let versionString = $"%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 "npx"
run npxTool.Value (sprintf "@vscode/vsce 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 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 "Bump version to %s" release.NugetVersion)
Branches.pushBranch "" remote "main"
Branches.tag "" release.NugetVersion
Branches.pushTag "" remote release.NugetVersion
let files = !!("./temp" </> "*.vsix")
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."
// release on github
let cl =
GitHub.createClientWithToken token
|> GitHub.draftNewRelease
gitOwner
gitName
release.NugetVersion
(release.SemVer.PreRelease <> None)
release.Notes
(cl, files)
||> Seq.fold (fun acc e -> acc |> GitHub.uploadFile e)
|> GitHub.publishDraft //releaseDraft
|> Async.RunSynchronously
// --------------------------------------------------------------------------------------
// Target definitions
// --------------------------------------------------------------------------------------
let initTargets () =
Target.create "Clean" (fun _ ->
Shell.cleanDir "./temp"
Shell.cleanDir "./out" // used for fable output -> then bundled with webpack into release folder
Shell.copyFiles "release" [ "README.md"; "LICENSE.md" ]
Shell.copyFile "release/CHANGELOG.md" "RELEASE_NOTES.md")
Target.create "YarnInstall" <| fun _ -> Yarn.install id
Target.create "DotNetRestore" <| fun _ -> DotNet.restore id "src"
Target.create "Watch" (fun _ ->
Fable.run
{ Fable.DefaultArgs with
Command = Fable.Watch
Debug = true
Webpack = Fable.WithWebpack None })
Target.create "CopyDocs" (fun _ ->
Shell.copyFiles "release" [ "README.md"; "LICENSE.md" ]
Shell.copyFile "release/CHANGELOG.md" "RELEASE_NOTES.md")
Target.create "RunScript" (fun _ ->
Fable.run
{ Fable.DefaultArgs with
Command = Fable.Build
Debug = false
Webpack = Fable.WithWebpack None })
Target.create "RunDevScript" (fun _ ->
Fable.run
{ Fable.DefaultArgs with
Command = Fable.Build
Debug = true
Webpack = Fable.WithWebpack None })
Target.create "CopyFSACNetcore" (fun _ ->
let tfms = [ "net8.0"; "net9.0" ]
for tfm in tfms do
let fsacBinNetcore = $"packages/fsac/fsautocomplete/tools/{tfm}/any"
if Directory.Exists fsacBinNetcore then
let releaseBinNetcore = $"release/bin/{tfm}"
Trace.tracefn $"Copying FSAC binaries from {fsacBinNetcore} to {releaseBinNetcore}"
copyFSACNetcore releaseBinNetcore fsacBinNetcore
else
Trace.tracefn $"No FSAC binaries found for {tfm}")
Target.create "CopyGrammar" (fun _ ->
let fsgrammarDir = "paket-files/github.com/ionide/ionide-fsgrammar/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 "BuildPackageOpenVsix" (fun _ ->
let packageJsonPath = "release" </> "package.json"
let packageJsonContent = System.IO.File.ReadAllText(packageJsonPath)
let updatedPackageJsonContent =
packageJsonContent.Replace("ms-dotnettools.csharp", "muhammad-sammy.csharp")
System.IO.File.WriteAllText(packageJsonPath, updatedPackageJsonContent))
Target.create "SetVersion" (fun _ -> setVersion release "release")
Target.create "PublishToGallery" (fun _ -> publishToGallery "release")
Target.create "ReleaseGitHub" (fun _ -> releaseGithub release)
Target.create "Format" (fun _ ->
DotNet.exec id "fantomas" "src build"
|> fun r ->
if r.OK then
()
else
r.Errors |> List.iter (Trace.tracefn "%s")
failwith "Error running fantomas")
// TypeCheck: runs Fable compilation only (no webpack) to quickly verify F# type correctness.
// Faster than the full Build target — useful for CI checks that only need type-checking.
Target.create "TypeCheck" (fun _ ->
Fable.run
{ Fable.DefaultArgs with
Command = Fable.Build
Debug = false
Webpack = Fable.WithoutWebpack })
Target.create "Default" ignore
Target.create "Build" ignore
Target.create "BuildDev" ignore
Target.create "Release" ignore
let buildTargetTree () =
Option.iter (TraceSecrets.register "<GITHUB_TOKEN>") githubToken
let (==>!) x y = x ==> y |> ignore
"YarnInstall" ==>! "RunScript"
"DotNetRestore" ==>! "RunScript"
"DotNetRestore" ==>! "TypeCheck"
"Clean" ==> "Format" ==> "RunScript" ==> "CopyGrammar" ==> "CopySchemas"
==>! "Default"
"Clean"
==> "RunScript"
==> "CopyDocs"
==> "CopyFSACNetcore"
==> "CopyGrammar"
==> "CopySchemas"
==> "CopyLib"
==>! "Build"
"YarnInstall" ==>! "Build"
"DotNetRestore" ==>! "Build"
"Format"
==> "Build"
==> "SetVersion"
==> "BuildPackage"
==> "ReleaseGitHub"
==> "PublishToGallery"
==>! "Release"
"YarnInstall" ==>! "Watch"
"DotNetRestore" ==>! "Watch"
"YarnInstall" ==>! "RunDevScript"
"DotNetRestore" ==>! "RunDevScript"
"RunDevScript" ==>! "BuildDev"
[<EntryPoint>]
let main argv =
argv
|> Array.toList
|> Context.FakeExecutionContext.Create false "build.fsx"
|> Context.RuntimeContext.Fake
|> Context.setExecutionContext
initTargets ()
buildTargetTree ()
Target.runOrDefaultWithArguments "Default"
0