-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fsx
92 lines (75 loc) · 2.58 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
// --------------------------------------------------------------------------------------
// FAKE build script
// --------------------------------------------------------------------------------------
#r "./packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.AssemblyInfoFile
open System
// --------------------------------------------------------------------------------------
// Build variables
// --------------------------------------------------------------------------------------
let buildDirs = !! "/**/bin" //!! "src/**/bin" ++ "tests/**/bin"
let appReferences = !! "/**/*.fsproj"
let testExecutables = !! "/**/bin/**/*Tests*.dll"
let dotnetcliVersion = DotNetCli.GetDotNetSDKVersionFromGlobalJson()
let mutable dotnetExePath = "dotnet"
let configuration = "Debug"
// --------------------------------------------------------------------------------------
// Targets
// --------------------------------------------------------------------------------------
Target "Clean" (fun _ ->
CleanDirs buildDirs
)
Target "InstallDotNetCLI" (fun _ ->
dotnetExePath <- DotNetCli.InstallDotNetSDK dotnetcliVersion
)
Target "Restore" (fun _ ->
appReferences
|> Seq.iter (fun p ->
let dir = System.IO.Path.GetDirectoryName p
DotNetCli.Restore (fun p ->
{ p with
ToolPath = dotnetExePath
WorkingDir = dir })
)
)
Target "Build" (fun _ ->
appReferences
|> Seq.iter (fun p ->
let dir = System.IO.Path.GetDirectoryName p
DotNetCli.Build (fun p ->
{ p with
ToolPath = dotnetExePath
WorkingDir = dir
Configuration = configuration})
)
)
Target "RunTests" (fun _ ->
testExecutables
|> Seq.iter (fun p ->
let dir = System.IO.Path.GetDirectoryName p
DotNetCli.RunCommand (fun p ->
{ p with
ToolPath = dotnetExePath
WorkingDir = dir
}) (sprintf "exec %s" p)
)
)
Target "WriteAssemblyInfo" (fun _ ->
CreateFSharpAssemblyInfo "./Busy/AssemblyInfo.fs"
[
Attribute.InternalsVisibleTo "Busy.Tests"]
)
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override
Target "All" DoNothing
// --------------------------------------------------------------------------------------
// Build order
// --------------------------------------------------------------------------------------
"Clean"
==> "InstallDotNetCLI"
==> "Restore"
==> "Build"
==> "RunTests"
==> "All"
RunTargetOrDefault "All"