forked from fable-compiler/Fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_old.fsx
1078 lines (861 loc) · 34.8 KB
/
build_old.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
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#load "src/Fable.PublishUtils/PublishUtils.fs"
open System
open System.Text.RegularExpressions
open PublishUtils
// ncave FCS fork
let FCS_REPO = "https://github.com/ncave/fsharp"
let FCS_REPO_LOCAL = "../fsharp"
let FCS_REPO_FABLE_BRANCH = "fable"
let FCS_REPO_SERVICE_SLIM_BRANCH = "service_slim"
let BUILD_ARGS = fsi.CommandLineArgs |> Array.skip 1 |> List.ofArray
let BUILD_ARGS_LOWER = BUILD_ARGS |> List.map (fun x -> x.ToLower())
module Util =
let cleanDirs dirs =
for dir in dirs do
printfn $"Clean {dir}"
removeDirRecursive dir
// TODO: move to PublishUtils.fs ?
let copyFiles sourceDir searchPattern destDir =
printfn $"Copy {sourceDir </> searchPattern} to {destDir}"
for source in IO.Directory.GetFiles(sourceDir, searchPattern) do
let fileName = IO.Path.GetFileName(source)
let target = destDir </> fileName
IO.File.Copy(source, target, true)
let resolveDir dir = __SOURCE_DIRECTORY__ </> dir
let updateVersionsInFableTransforms compilerVersion (libraryVersions: (string * string) list) =
let mutable updated = Set.empty
let replaceVersion (lang: string option) version fileContent =
let prefix =
match lang with
| None -> ""
| Some lang -> $"{lang.ToUpperInvariant()}_LIBRARY_"
Regex.Replace(
fileContent,
$@"^(\s*)let \[<Literal>] {prefix}VERSION = ""(.*?)""",
(fun (m: Match) ->
match lang with
| Some lang when m.Groups[2].Value <> version -> updated <- Set.add lang updated
| _ -> ()
m.Groups[1].Value + $"let [<Literal>] {prefix}VERSION = \"{version}\""
),
RegexOptions.Multiline
)
let filePath = "src/Fable.Transforms/Global/Compiler.fs"
readFile filePath
|> replaceVersion None compilerVersion
|> List.foldBack
(fun (lang, version) fileContent -> replaceVersion (Some lang) version fileContent)
libraryVersions
|> writeFile filePath
updated
let updatePkgVersionInFsproj projFile version =
readFile projFile
|> replaceRegex Publish.NUGET_PACKAGE_VERSION (fun m -> m.Groups[1].Value + version + m.Groups[3].Value)
|> writeFile projFile
let runTypeScript projectDir =
run ("npm run tsc -- --project " + projectDir)
let runTypeScriptWithArgs projectDir args =
run ("npm run tsc -- --project " + projectDir + " " + String.concat " " args)
let runFableWithArgs projectDir args =
run (
"dotnet run -c Release --project src/Fable.Cli -- "
+ projectDir
+ " "
+ String.concat " " args
)
let watchFableWithArgs projectDir args =
run (
"dotnet watch --project src/Fable.Cli run -- "
+ projectDir
+ " --cwd ../.. "
+ String.concat " " args
)
let runFableWithArgsInDirAs release projectDir args =
let cliDir = resolveDir "src/Fable.Cli"
let cliArgs = args |> String.concat " "
let cliCmd =
$"""dotnet run {if release then
"-c Release"
else
""} --project {cliDir} -- {cliArgs}"""
runInDir (resolveDir projectDir) cliCmd
let runFableWithArgsInDir projectDir args =
runFableWithArgsInDirAs true projectDir args
let runFableWithArgsAsync projectDir args =
runAsync (
"dotnet run -c Release --project src/Fable.Cli -- "
+ projectDir
+ " "
+ String.concat " " args
)
let runNpx command args =
run ("npx " + command + " " + (String.concat " " args))
let runNpmScript script args =
run ("npm run " + script + " -- " + (String.concat " " args))
let runNpmScriptAsync script args =
runAsync ("npm run " + script + " -- " + (String.concat " " args))
let runFable projectDir = runFableWithArgs projectDir []
let runMocha testDir =
runNpmScript "mocha" [ $"{testDir} --reporter dot -t 10000" ]
open Util
module Unused =
let downloadAndExtractTo (url: string) (targetDir: string) =
$"npx download --extract --out %s{targetDir} \"%s{url}\"" |> run
let coverage () =
// report converter
// https://github.com/danielpalme/ReportGenerator
// dotnet tool install dotnet-reportgenerator-globaltool --tool-path tools
if
not (pathExists "./bin/tools/reportgenerator")
&& not (pathExists "./bin/tools/reportgenerator.exe")
then
runInDir "." "dotnet tool install dotnet-reportgenerator-globaltool --tool-path bin/tools"
let reportGen =
if pathExists "./bin/tools/reportgenerator" then
"bin/tools/reportgenerator"
else
"bin\\tools\\reportgenerator.exe"
// if not (pathExists "build/fable-library") then
// buildLibrary()
cleanDirs [ "build/tests" ]
runFable "tests"
// JS
run "npx nyc mocha build/tests --require source-map-support/register --reporter dot -t 10000"
runInDir
"."
(reportGen
+ " \"-reports:build/coverage/nyc/lcov.info\" -reporttypes:Html \"-targetdir:build/coverage/nyc/html\" ")
// .NET
//runInDir "tests/Main" "dotnet build /t:Collect_Coverage"
cleanDirs [ "build/coverage/netcoreapp2.0/out" ]
runInDir
"."
(reportGen
+ " \"-reports:build/coverage/netcoreapp2.0/coverage.xml\" -reporttypes:Html \"-targetdir:build/coverage/netcoreapp2.0/html\" ")
// TARGETS ---------------------------
// let buildLibraryJsWithOptions (opts: {| watch: bool |}) =
// let baseDir = __SOURCE_DIRECTORY__
// let projectDir = baseDir </> "src/fable-library"
// let buildDir = baseDir </> "build/fable-library"
// let fableOpts = [
// "--outDir " + buildDir
// "--fableLib " + buildDir
// "--exclude Fable.Core"
// "--define FX_NO_BIGINT"
// "--define FABLE_LIBRARY"
// if opts.watch then "--watch"
// ]
// cleanDirs [buildDir]
// runInDir baseDir "npm install"
// makeDirRecursive buildDir
// copyFile (projectDir </> "package.json") buildDir
// if opts.watch then
// Async.Parallel [
// runNpmScriptAsync "tsc" [
// "--project " + projectDir
// "--watch"
// ]
// runFableWithArgsAsync projectDir fableOpts
// ] |> runAsyncWorkflow
// else
// runTypeScript projectDir
// runFableWithArgs projectDir fableOpts
// removeDirRecursive (buildDir </> ".fable")
// let buildLibraryJs() = buildLibraryJsWithOptions {| watch = false |}
// let buildLibraryJsIfNotExists() =
// if not (pathExists (__SOURCE_DIRECTORY__ </> "build/fable-library")) then
// buildLibraryJs()
let buildLibraryTs () =
let baseDir = __SOURCE_DIRECTORY__
let sourceDir = "./src/fable-library"
let buildDirTs = "./build/fable-library-ts"
let buildDirJs = "./build/fable-library"
cleanDirs [ buildDirTs; buildDirJs ]
runInDir baseDir "npm install"
runFableWithArgs
sourceDir
[
"--outDir " + buildDirTs
"--fableLib " + buildDirTs
"--lang TypeScript"
"--typedArrays false"
"--exclude Fable.Core"
"--define FX_NO_BIGINT"
"--define FABLE_LIBRARY"
]
copyFiles sourceDir "*.ts" buildDirTs
copyFiles (sourceDir </> "ts") "*.json" buildDirTs
copyDirRecursive (sourceDir </> "lib") (buildDirTs </> "lib")
copyFile (sourceDir </> "package.json") buildDirTs
runTypeScriptWithArgs buildDirTs [ "--outDir " + buildDirJs ]
copyFile (buildDirTs </> "lib/big.d.ts") (buildDirJs </> "lib/big.d.ts")
copyFile (buildDirTs </> "package.json") buildDirJs
copyFile (sourceDir </> "README.md") buildDirJs
let buildLibraryTsIfNotExists () =
if not (pathExists (__SOURCE_DIRECTORY__ </> "build/fable-library-ts")) then
buildLibraryTs ()
let buildLibraryPy () =
let libraryDir = "./src/fable-library-py"
let projectDir = libraryDir </> "fable_library"
let buildDirPy = "./build/fable-library-py"
cleanDirs [ buildDirPy ]
runFableWithArgs
projectDir
[
"--outDir " + buildDirPy </> "fable_library"
"--fableLib " + buildDirPy </> "fable_library"
"--lang Python"
"--exclude Fable.Core"
"--define FABLE_LIBRARY"
]
// Copy python related files from projectDir to buildDir
copyFiles libraryDir "*" buildDirPy
copyFiles projectDir "*.py" (buildDirPy </> "fable_library")
// Fix issues with Fable .fsproj not supporting links
copyDirNonRecursive (buildDirPy </> "fable_library/fable-library") (buildDirPy </> "fable_library")
removeDirRecursive (buildDirPy </> "fable_library/fable-library")
let buildLibraryPyIfNotExists () =
let baseDir = __SOURCE_DIRECTORY__
if not (pathExists (baseDir </> "build/fable-library-py")) then
buildLibraryPy ()
let buildLibraryRust () =
let libraryDir = "src/fable-library-rust"
let sourceDir = libraryDir </> "src"
let buildDir = "build/fable-library-rust"
let outDir = buildDir </> "src"
let fableLib = "."
cleanDirs [ buildDir ]
runFableWithArgsInDir
sourceDir
[
"--outDir " + resolveDir outDir
"--fableLib " + fableLib
"--lang Rust"
"--exclude Fable.Core"
"--define FABLE_LIBRARY"
"--noCache"
]
copyFiles libraryDir "*.toml" buildDir
copyFiles sourceDir "*.rs" outDir
copyDirRecursive (libraryDir </> "vendored") (buildDir </> "vendored")
runInDir buildDir "cargo fmt"
runInDir buildDir "cargo fix --allow-no-vcs"
runInDir buildDir "cargo build"
let buildLibraryRustIfNotExists () =
if not (pathExists (__SOURCE_DIRECTORY__ </> "build/fable-library-rust")) then
buildLibraryRust ()
let buildLibraryDart (clean: bool) =
let sourceDir = resolveDir "src/fable-library-dart"
let buildDir = resolveDir "build/fable-library-dart"
if clean then
cleanDirs [ buildDir ]
makeDirRecursive buildDir
copyFiles sourceDir "pubspec.*" buildDir
copyFiles sourceDir "analysis_options.yaml" buildDir
copyFiles sourceDir "*.dart" buildDir
runFableWithArgsInDir
sourceDir
[
"--outDir " + buildDir
"--fableLib " + buildDir
"--lang Dart"
"--exclude Fable.Core"
"--define FABLE_LIBRARY"
if clean then
"--noCache"
]
let buildLibraryDartIfNotExists () =
if not (pathExists (__SOURCE_DIRECTORY__ </> "build/fable-library-dart")) then
buildLibraryDart (true)
// Like testStandalone() but doesn't create bundles/packages for fable-standalone & friends
// Mainly intended for CI
let testStandaloneFast () =
runFableWithArgs "src/fable-standalone/src" [ "--noCache" ]
runFableWithArgs "src/fable-compiler-js/src" [ "--exclude Fable.Core"; "--define LOCAL_TEST" ]
let fableJs = "./src/fable-compiler-js/src/app.fs.js"
let testProj = "tests/Js/Main/Fable.Tests.fsproj"
let buildDir = "build/tests/Standalone"
run $"node {fableJs} {testProj} {buildDir}"
runMocha buildDir
let buildWorker
(opts:
{|
minify: bool
watch: bool
|})
=
printfn
"Building worker%s..."
(if opts.minify then
""
else
" (no minification)")
let projectDir = "src/fable-standalone/src"
let buildDir = "build/fable-standalone"
let fableLib = "./build/fable-library"
let distDir = "src/fable-standalone/dist"
runFableWithArgs (projectDir + "/Worker") [ "--outDir " + buildDir + "/worker"; "--fableLib " + fableLib ]
let rollupTarget =
match opts.minify with
| true -> buildDir </> "worker.js"
| false -> distDir </> "worker.min.js"
// make standalone worker dist
runNpmScript "rollup" [ $"""{buildDir}/worker/Worker.js -o {rollupTarget} --format iife""" ]
if opts.minify then
// runNpx "webpack" [sprintf "--entry ./%s/worker.js --output ./%s/worker.min.js --config ./%s/../worker.config.js" buildDir distDir projectDir]
runNpmScript "terser" [ $"{buildDir}/worker.js -o {distDir}/worker.min.js --mangle --compress" ]
// Put fable-library files next to bundle
printfn "Copying fable-library..."
buildLibraryTsIfNotExists ()
let libraryDir = "build/fable-library"
let libraryTarget = distDir </> "fable-library"
copyDirRecursive libraryDir libraryTarget
let buildStandalone
(opts:
{|
minify: bool
watch: bool
|})
=
buildLibraryTs ()
printfn
"Building standalone%s..."
(if opts.minify then
""
else
" (no minification)")
let projectDir = "src/fable-standalone/src"
let buildDir = "build/fable-standalone"
let fableLib = "./build/fable-library"
let distDir = "src/fable-standalone/dist"
let rollupTarget =
match opts.watch, opts.minify with
| true, _ ->
match BUILD_ARGS with
| _ :: rollupTarget :: _ -> rollupTarget
| _ ->
failwith
"Pass the bundle output, e.g.: npm run build watch-standalone ../repl3/public/js/repl/bundle.min.js"
| false, true -> buildDir </> "bundle.js"
| false, false -> distDir </> "bundle.min.js"
let rollupArgs =
[
buildDir </> "bundle/Main.js"
"-o " + rollupTarget
"--format umd"
"--name __FABLE_STANDALONE__"
]
// cleanup
if not opts.watch then
cleanDirs [ buildDir; distDir ]
makeDirRecursive distDir
// build standalone bundle
runFableWithArgs
projectDir
[
"--outDir " + buildDir </> "bundle"
"--fableLib " + fableLib
if opts.watch then
"--watch"
"--run rollup"
yield! rollupArgs
"--watch"
]
// make standalone bundle dist
runNpmScript "rollup" rollupArgs
if opts.minify then
runNpmScript
"terser"
[
buildDir </> "bundle.js"
"-o " + distDir </> "bundle.min.js"
"--mangle"
"--compress"
]
// build standalone worker
buildWorker opts
// print bundle size
fileSizeInBytes (distDir </> "bundle.min.js") / 1000.
|> printfn "Bundle size: %fKB"
fileSizeInBytes (distDir </> "worker.min.js") / 1000.
|> printfn "Worker size: %fKB"
let buildCompilerJs (minify: bool) =
let projectDir = "src/fable-compiler-js/src"
let buildDir = "build/fable-compiler-js"
let fableLib = "./build/fable-library"
let distDir = "src/fable-compiler-js/dist"
if not (pathExists "build/fable-standalone") then
buildStandalone
{|
minify = minify
watch = false
|}
cleanDirs [ buildDir; distDir ]
makeDirRecursive distDir
runFableWithArgs projectDir [ "--outDir " + buildDir; "--fableLib " + fableLib; "--exclude Fable.Core" ]
let rollupTarget =
if minify then
distDir </> "app.js"
else
distDir </> "app.min.js"
run $"npx rollup {buildDir}/app.js -o {rollupTarget} --format umd --name Fable"
if minify then
run $"npx terser {distDir}/app.js -o {distDir}/app.min.js --mangle --compress"
// Copy fable-library
copyDirRecursive ("build/fable-library") (distDir </> "fable-library")
// Copy fable-metadata
copyDirRecursive ("src/fable-metadata/lib") (distDir </> "fable-metadata")
let testStandalone (minify) =
let fableDir = "src/fable-compiler-js"
let buildDir = "build/tests/Standalone"
if not (pathExists "build/fable-compiler-js") then
buildCompilerJs (minify)
cleanDirs [ buildDir ]
// Link fable-compiler-js to local packages
runInDir fableDir "npm link ../fable-metadata"
runInDir fableDir "npm link ../fable-standalone"
// Test fable-compiler-js locally
run $"node {fableDir} tests/Js/Main/Fable.Tests.fsproj {buildDir}"
runMocha buildDir
// // Another local fable-compiler-js test
// runInDir (fableDir </> "test") "node .. test_script.fsx"
// runInDir (fableDir </> "test") "node test_script.fsx.js"
// Unlink local packages after test
runInDir fableDir "npm unlink ../fable-metadata && cd ../fable-metadata && npm unlink"
runInDir fableDir "npm unlink ../fable-standalone && cd ../fable-standalone && npm unlink"
let testReact () =
runFableWithArgs "tests/React" [ "--noCache" ]
runInDir "tests/React" "npm i && npm test"
let compileAndRunTestsWithMocha clean projectName =
let projectDir = "tests/Js/" + projectName
let buildDir = "build/tests/Js/" + projectName
let fableLib = "./build/fable-library"
if clean then
cleanDirs [ buildDir ]
runFableWithArgs projectDir [ "--outDir " + buildDir; "--fableLib " + fableLib; "--exclude Fable.Core" ]
runMocha buildDir
let testProjectConfigs () =
[
"tests/Integration/ProjectConfigs/DebugWithExtraDefines", "Debug"
"tests/Integration/ProjectConfigs/CustomConfiguration", "Test"
"tests/Integration/ProjectConfigs/ReleaseNoExtraDefines", String.Empty
"tests/Integration/ProjectConfigs/ConsoleApp", String.Empty
]
|> List.iter (fun (projectDir, configuration) ->
let buildDir = "build/" + projectDir
let fableLib = "./build/fable-library"
cleanDirs [ buildDir ]
runFableWithArgs
projectDir
[
"--outDir " + buildDir
"--fableLib " + fableLib
"--exclude Fable.Core"
if not (String.IsNullOrEmpty configuration) then
"--configuration " + configuration
]
runMocha buildDir
)
let testIntegration () =
buildLibraryTsIfNotExists ()
runInDir "tests/Integration/Integration" "dotnet run -c Release"
runInDir "tests/Integration/Compiler" "dotnet run -c Release"
testProjectConfigs ()
let testJs () =
buildLibraryTsIfNotExists ()
compileAndRunTestsWithMocha true "Main"
runInDir "tests/Js/Main" "dotnet run -c Release"
// Adaptive tests must go in a different project to avoid conflicts with Queue shim, see #2559
compileAndRunTestsWithMocha true "Adaptive"
testReact ()
if envVarOrNone "CI" |> Option.isSome then
testStandaloneFast ()
let testTypeScript isWatch =
buildLibraryTsIfNotExists ()
let projectDir = "tests/TypeScript"
let buildDir = "build/tests/TypeScript"
let buildDir2 = "build/tests/TypeScriptCompiled"
let fableLib = "fable-library-ts"
cleanDirs [ buildDir; buildDir2 ]
copyFile (projectDir </> "tsconfig.json") (buildDir </> "tsconfig.json")
runFableWithArgsInDirAs
(not isWatch)
"."
[
projectDir
"--lang ts"
"--outDir " + buildDir
"--fableLib " + fableLib
"--exclude Fable.Core"
if isWatch then
"--watch"
$"--runWatch npm run test-ts"
]
runNpmScript "test-ts" []
let testPython () =
buildLibraryPyIfNotExists () // NOTE: fable-library-py needs to be built separately.
let projectDir = "tests/Python"
let buildDir = "build/tests/Python"
let fableLib = "fable-library-py"
cleanDirs [ buildDir ]
runInDir projectDir "dotnet test -c Release"
runFableWithArgs
projectDir
[
"--outDir " + buildDir
"--fableLib " + fableLib
"--exclude Fable.Core"
"--lang Python"
]
runInDir buildDir "poetry run pytest -x"
// Testing in Windows
// runInDir buildDir "python -m pytest -x"
type RustTestMode =
| NoStd
| Default
| Threaded
let testRust testMode =
// buildLibraryRustIfNotExists()
buildLibraryRust ()
let testAstDir = "src/Fable.Transforms/Rust/AST/Tests"
let projectDir = "tests/Rust"
let buildDir = "build/tests/Rust"
let fableLib = "fable-library-rust"
// limited cleanup to reduce IO churn, speed up rebuilds,
// and save the ssd (target folder can get huge)
cleanDirs [ buildDir </> "src" ]
cleanDirs [ buildDir </> "tests" ]
cleanDirs [ buildDir </> ".fable" ]
// copy rust only tests files (these must be present when running dotnet test as import expr tests for file presence)
makeDirRecursive (buildDir </> "tests" </> "src")
copyFiles (projectDir </> "tests/src") "*.rs" (buildDir </> "tests/src")
// run .NET tests
runInDir testAstDir "dotnet test -c Release"
runInDir projectDir "dotnet test -c Release"
// build Fable Rust tests
runFableWithArgs
projectDir
[
"--outDir " + buildDir
"--exclude Fable.Core"
"--lang Rust"
"--fableLib " + fableLib
"--noCache"
if testMode = NoStd then
"--define NO_STD_NO_EXCEPTIONS"
]
// copy project file
copyFile (projectDir </> "Cargo.toml") buildDir
// rustfmt all tests
runInDir buildDir "cargo fmt"
// runInDir buildDir "cargo fix --allow-no-vcs"
runInDir buildDir "cargo build"
// run Fable Rust tests
match testMode with
| Default -> runInDir buildDir "cargo test"
| NoStd -> runInDir buildDir "cargo test --features no_std"
| Threaded -> runInDir buildDir "cargo test --features threaded"
let testDart isWatch =
if not (pathExists "build/fable-library-dart") then
buildLibraryDart (true)
let buildDir = resolveDir "build/tests/Dart"
let sourceDir = resolveDir "tests/Dart"
cleanDirs [ buildDir ]
makeDirRecursive buildDir
copyFiles sourceDir "pubspec.*" buildDir
copyFiles sourceDir "analysis_options.yaml" buildDir
copyFiles sourceDir "*.dart" buildDir
runFableWithArgsInDirAs
(not isWatch)
sourceDir
[
"src"
"--outDir " + (buildDir </> "src")
"--exclude Fable.Core"
"--lang Dart"
"--noCache"
if isWatch then
"--watch"
$"--runWatch dart test {buildDir}/main.dart"
]
runInDir buildDir "dart test main.dart"
let buildLocalPackageWith pkgDir pkgCommand fsproj action =
let version =
Publish.loadReleaseVersion "src/Fable.Cli"
+ "-local-build-"
+ DateTime.Now.ToString("yyyyMMdd-HHmm")
action version
updatePkgVersionInFsproj fsproj version
run $"dotnet pack {fsproj} -p:Pack=true -c Release -o {pkgDir}"
// Return install command
$"""dotnet {pkgCommand} --version "{version}" --add-source {fullPath pkgDir}"""
let buildLocalPackage pkgDir =
buildLocalPackageWith
pkgDir
"tool install fable"
(resolveDir "src/Fable.Cli/Fable.Cli.fsproj")
(fun version ->
updateVersionsInFableTransforms version [] |> ignore
buildLibraryTs ()
)
let testRepos () =
let repos =
[
"https://github.com/alfonsogarciacaro/FsToolkit.ErrorHandling:update-fable-3", "npm i && npm test"
"https://github.com/fable-compiler/fable-promise:master", "npm i && npm test"
"https://github.com/alfonsogarciacaro/Thoth.Json:nagareyama",
"dotnet paket restore && npm i && dotnet fable tests -o tests/bin --run mocha tests/bin"
"https://github.com/alfonsogarciacaro/FSharp.Control.AsyncSeq:nagareyama",
"cd tests/fable && npm i && npm test"
"https://github.com/alfonsogarciacaro/Fable.Extras:nagareyama", "dotnet paket restore && npm i && npm test"
"https://github.com/alfonsogarciacaro/Fable.Jester:nagareyama", "npm i && npm test"
"https://github.com/Zaid-Ajaj/Fable.SimpleJson:master", "npm i && npm run test-nagareyama"
]
let testDir = tempPath () </> "fable-repos"
printfn $"Cloning repos to: {testDir}"
cleanDirs [ testDir ]
makeDirRecursive testDir
let pkgInstallCmd = buildLocalPackage (testDir </> "pkg")
for (repo, command) in repos do
let url, branch = let i = repo.LastIndexOf(":") in repo[.. i - 1], repo[i + 1 ..]
let name = url[url.LastIndexOf("/") + 1 ..]
runInDir testDir $"git clone {url} {name}"
let repoDir = testDir </> name
runInDir repoDir ("git checkout " + branch)
runInDir repoDir "dotnet tool uninstall fable"
runInDir repoDir pkgInstallCmd
runInDir repoDir "dotnet tool restore"
runInDir repoDir command
let githubRelease () =
match envVarOrNone "GITHUB_USER", envVarOrNone "GITHUB_TOKEN" with
| Some user, Some token ->
try
let version, notes = Publish.loadReleaseVersionAndNotes "src/Fable.Cli"
let notes =
notes
|> Array.map (fun n -> $"""'{n.Replace("'", @"\'").Replace("`", @"\`")}'""")
|> String.concat ","
run $"git commit -am \"Release {version}\" && git push"
runSilent
$"""node --eval "require('ghreleases').create({{ user: '{user}', token: '{token}', }}, 'fable-compiler', 'Fable', {{ tag_name: '{version}', name: '{version}', body: [{notes}].join('\n'), }}, (err, res) => {{ if (err != null) {{ console.error(err) }} }})" """
printfn $"Github release %s{version} created successfully"
with ex ->
printfn $"Github release failed: %s{ex.Message}"
| _ -> failwith "Expecting GITHUB_USER and GITHUB_TOKEN enviromental variables"
let copyFcsRepo sourceDir =
let targetDir = "src/fcs-fable"
let path1 = "fcs/fcs-fable"
let path2 = "src/Compiler"
cleanDirs [ targetDir ]
copyDirRecursive (sourceDir </> path1) targetDir
copyDirRecursive (sourceDir </> path2) (targetDir </> path2)
removeFile (targetDir </> ".gitignore")
let projPath = (targetDir </> "fcs-fable.fsproj")
let projText = readFile projPath
let projText =
Regex.Replace(
projText,
@"(<FSharpSourcesRoot>\$\(MSBuildProjectDirectory\)).*?(<\/FSharpSourcesRoot>)",
"$1/src/Compiler$2"
)
// let projText =
// Regex.Replace(projText,
// @"artifacts\/bin\/FSharp.Core\/Release\/netstandard2.0",
// "lib/fcs")
projText |> writeFile projPath
let syncFcsRepo () =
// FAKE is giving lots of problems with the dotnet SDK version, ignore it
let cheatWithDotnetSdkVersion dir f =
let path = dir </> "build.fsx"
let script = readFile path
Regex.Replace(
script,
@"let dotnetExePath =[\s\S]*DotNetCli\.InstallDotNetSDK",
"let dotnetExePath = \"dotnet\" //DotNetCli.InstallDotNetSDK"
)
|> writeFile path
f ()
runInDir dir "git reset --hard"
printfn $"Expecting %s{FCS_REPO} repo to be cloned at %s{FCS_REPO_LOCAL}"
// TODO: Prompt to reset --hard changes
// service_slim
runInDir FCS_REPO_LOCAL ("git checkout " + FCS_REPO_SERVICE_SLIM_BRANCH)
runInDir FCS_REPO_LOCAL "git pull"
cheatWithDotnetSdkVersion (FCS_REPO_LOCAL </> "fcs") (fun () -> runBashOrCmd (FCS_REPO_LOCAL </> "fcs") "build" "")
copyFile
(FCS_REPO_LOCAL
</> "artifacts/bin/FSharp.Compiler.Service/Release/netstandard2.0/FSharp.Compiler.Service.dll")
"../fable/lib/fcs/"
copyFile
(FCS_REPO_LOCAL
</> "artifacts/bin/FSharp.Compiler.Service/Release/netstandard2.0/FSharp.Compiler.Service.xml")
"../fable/lib/fcs/"
copyFile
(FCS_REPO_LOCAL
</> "artifacts/bin/FSharp.Compiler.Service/Release/netstandard2.0/FSharp.Core.dll")
"../fable/lib/fcs/"
copyFile
(FCS_REPO_LOCAL
</> "artifacts/bin/FSharp.Compiler.Service/Release/netstandard2.0/FSharp.Core.xml")
"../fable/lib/fcs/"
// fcs-fable
runInDir FCS_REPO_LOCAL ("git checkout " + FCS_REPO_FABLE_BRANCH)
runInDir FCS_REPO_LOCAL "git pull"
cheatWithDotnetSdkVersion
(FCS_REPO_LOCAL </> "fcs")
(fun () -> runBashOrCmd (FCS_REPO_LOCAL </> "fcs") "build" "CodeGen.Fable")
copyFcsRepo FCS_REPO_LOCAL
let packages () =
[
"Fable.AST", doNothing
"Fable.Core", doNothing
"Fable.Cli",
(fun () ->
// TODO: Add library versions for other languages
let compilerVersion = Publish.loadReleaseVersion "src/Fable.Cli"
let updatedLibs =
updateVersionsInFableTransforms compilerVersion [ "js", getNpmVersion "src/fable-library" ]
buildLibraryTs ()
buildLibraryPy ()
buildLibraryRust ()
buildLibraryDart true
if updatedLibs.Contains("js") then
pushNpmWithoutReleaseNotesCheck "build/fable-library"
)
"Fable.PublishUtils", doNothing
"fable-metadata", doNothing
"fable-standalone",
fun () ->
buildStandalone
{|
minify = true
watch = false
|}
"fable-compiler-js", (fun () -> buildCompilerJs true)
]
let publishPackages restArgs =
let packages =
match List.tryHead restArgs with
| Some pkg -> packages () |> List.filter (fun (name, _) -> name = pkg)
| None -> packages ()
for (pkg, buildAction) in packages do
if Char.IsUpper pkg[0] then
let projFile = "src" </> pkg </> pkg + ".fsproj"
pushFableNuget projFile [ "Pack", "true" ] buildAction
else
pushNpm ("src" </> pkg) buildAction
let hasFlag flag = BUILD_ARGS_LOWER |> List.contains flag
match BUILD_ARGS_LOWER with
// | "check-sourcemaps"::_ ->
// ("src/quicktest/Quicktest.fs", "src/quicktest/bin/Quicktest.js", "src/quicktest/bin/Quicktest.js.map")
// |||> sprintf "nodemon --watch src/quicktest/bin/Quicktest.js --exec 'source-map-visualization --sm=\"%s;%s;%s\"'"
// |> List.singleton |> quicktest
// | "coverage"::_ -> coverage()
| ("test" | "test-js") :: _ -> testJs ()
| "test-mocha" :: _ -> compileAndRunTestsWithMocha true "Main"
| "test-mocha-fast" :: _ -> compileAndRunTestsWithMocha false "Main"
| "test-react" :: _ -> testReact ()
| "test-standalone" :: _ ->
let minify = hasFlag "--no-minify" |> not
testStandalone (minify)
| "test-standalone-fast" :: _ -> testStandaloneFast ()
| "test-configs" :: _ -> testProjectConfigs ()
| "test-integration" :: _ -> testIntegration ()
| "test-repos" :: _ -> testRepos ()
| ("test-ts" | "test-typescript") :: _ -> testTypeScript (false)
| ("watch-test-ts" | "watch-test-typescript") :: _ -> testTypeScript (true)
| "test-py" :: _ -> testPython ()
| "test-rust" :: _ -> testRust Default
| "test-rust-no_std" :: _ -> testRust NoStd
| "test-rust-default" :: _ -> testRust Default
| "test-rust-threaded" :: _ -> testRust Threaded
| "test-dart" :: _ -> testDart (false)
| "watch-test-dart" :: _ -> testDart (true)
| "quicktest" :: _ ->
buildLibraryTsIfNotExists ()
watchFableWithArgs "src/quicktest" [ "--watch --exclude Fable.Core --noCache --runScript" ]
| "quicktest-ts" :: _ ->
buildLibraryTsIfNotExists ()
let srcDir = "src/quicktest"
let outPath = "build/quicktest-ts/Quicktest.fs.js"
// Make sure outPath exists so nodemon doesn't complain
if not (pathExists outPath) then
makeDirRecursive (dirname outPath)
writeFile outPath ""
let runCmd =
$"npx concurrently \"tsc -w -p {srcDir} --outDir {dirname outPath}\" \"nodemon -w {outPath} {outPath}\""
watchFableWithArgs srcDir [ "--lang ts --watch --exclude Fable.Core --noCache --run"; runCmd ]
| ("quicktest-py" | "quicktest-python") :: _ ->
buildLibraryPyIfNotExists ()
watchFableWithArgs "src/quicktest-py" [ "--lang py --watch --exclude Fable.Core --noCache --runScript" ]
| "quicktest-dart" :: _ ->
buildLibraryDartIfNotExists ()
watchFableWithArgs "src/quicktest-dart" [ "--lang dart --watch --exclude Fable.Core --noCache --runScript" ]
| ("quicktest-rs" | "quicktest-rust") :: _ ->
buildLibraryRustIfNotExists ()
watchFableWithArgs "src/quicktest-rust" [ "--lang rs -e .rs --watch --exclude Fable.Core --noCache --runScript" ]
| "run" :: _ ->
buildLibraryTsIfNotExists ()
// Don't take args from pattern matching because they're lowered