This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.fsx
241 lines (198 loc) · 8.79 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
(* ------------------------------------------------------------------------
This file is part of fszmq.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
------------------------------------------------------------------------ *)
#r "System.Xml.Linq"
#r @"packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.Git
open Fake.AssemblyInfoFile
open Fake.ReleaseNotesHelper
open System
open System.IO
// The name of the project
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
let project = "fszmq"
// Short summary of the project
// (used as description in AssemblyInfo and as a short summary for NuGet package)
let summary = "An MPLv2-licensed F# binding for the ZeroMQ distributed computing library."
// File system information
let solutionFile = "fszmq.sln"
// Pattern specifying assemblies to be tested using NUnit
let testAssemblies = "tests/*.tests*/*.tests*.fsproj"
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitOwner = "zeromq"
let gitHome = "https://github.com/" + gitOwner
// The name of the project on GitHub
let gitName = "fszmq"
// The url for the raw files hosted
let gitRaw = environVarOrDefault "gitRaw" "https://raw.github.com/zeromq"
// Standard file header
let [<Literal>] HEADER = """This file is part of fszmq.
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/."""
// Adapt header to various comment blocks
let newLineChars = Environment.NewLine.ToCharArray ()
let fsHeader = String.Join ( Environment.NewLine
, [| "(* ------------------------------------------------------------------------"
HEADER
"------------------------------------------------------------------------ *)" |])
let csHeader = String.Join ( Environment.NewLine
, HEADER.Split newLineChars
|> Array.map (fun l -> "//" + l) )
let vbHeader = String.Join ( Environment.NewLine
, HEADER.Split newLineChars
|> Array.map (fun l -> "' " + l) )
// Read additional information from the release notes document
let release = LoadReleaseNotes "RELEASE_NOTES.md"
// Helper active pattern for project types
let (|Fsproj|Csproj|Vbproj|) (projFileName:string) =
match projFileName with
| f when f.EndsWith "fsproj" -> Fsproj
| f when f.EndsWith "csproj" -> Csproj
| f when f.EndsWith "vbproj" -> Vbproj
| _ -> projFileName
|> sprintf "Project file %s not supported. Unknown project type."
|> failwith
// Generate assembly info files with the right version & up-to-date information
Target "AssemblyInfo" (fun _ ->
let getAssemblyInfoAttributes projectName =
[ Attribute.Title (projectName)
Attribute.Product project
Attribute.Description summary
Attribute.Version release.AssemblyVersion
Attribute.FileVersion release.AssemblyVersion ]
let getProjectDetails projectPath =
let projectName = Path.GetFileNameWithoutExtension projectPath
(projectPath
,projectName
,Path.GetDirectoryName projectPath
,getAssemblyInfoAttributes projectName)
let writeFile builder attributes header fileName =
builder fileName attributes
let before = File.ReadAllText fileName
let after = sprintf "%s%s%s" header Environment.NewLine before
File.WriteAllText (fileName,after)
!! "src/**/*.??proj"
|> Seq.map getProjectDetails
|> Seq.iter (fun (projFileName, projectName, folderName, attributes) ->
match projFileName with
| Fsproj -> writeFile CreateFSharpAssemblyInfo
attributes
fsHeader
(folderName @@ "AssemblyInfo.fs")
| Csproj -> writeFile CreateCSharpAssemblyInfo
attributes
csHeader
((folderName @@ "Properties") @@ "AssemblyInfo.cs")
| Vbproj -> writeFile CreateVisualBasicAssemblyInfo
attributes
vbHeader
((folderName @@ "My Project") @@ "AssemblyInfo.vb")))
// Copies binaries from default VS location to exepcted bin folder
Target "CopyBinaries" (fun _ ->
// managed libraries
!! "src/fszmq/bin/Release/netstandard2.0/fszmq.*" |> CopyTo "bin"
// native dependencies
!! "lib/zeromq/OSX/**/*.*" |> CopyTo "bin/OSX"
!! "lib/zeromq/LIN/**/*.*" |> CopyTo "bin/LIN"
!! "lib/zeromq/WIN/x86/libzmq.*" |> CopyTo "bin/WIN/x86"
!! "lib/zeromq/WIN/x64/libzmq.*" |> CopyTo "bin/WIN/x64")
// --------------------------------------------------------------------------------------
// Clean build results
Target "Clean" (fun _ -> CleanDirs ["bin"; "temp"])
Target "CleanDocs" (fun _ -> CleanDirs ["docs/output"])
Target "CleanGuide" (fun _ -> CleanDirs ["docs/content/zguide"])
// --------------------------------------------------------------------------------------
// Build library & test project
Target "Build" (fun _ ->
DotNetCli.Build (fun p -> { p with Configuration = "Release" })
|> ignore)
// --------------------------------------------------------------------------------------
// Run the unit tests using test runner
Target "RunTests" (fun _ ->
!! testAssemblies
|> Seq.iter (fun proj -> DotNetCli.Test (fun p ->
{ p with
Project = proj
Configuration = "Release"
AdditionalArgs = [ "--no-build" ] })))
// --------------------------------------------------------------------------------------
// Build a deployment artifacts
Target "Archive" (fun _ ->
let rootDir = "temp/fszmq-" + release.NugetVersion
// set up desired file structure
!! "bin/*.dll" ++ "bin/*.xml" |> Copy rootDir
!! "lib/zeromq/OSX/**/*.*" |> Copy (rootDir + "/OSX")
!! "lib/zeromq/LIN/**/*.*" |> Copy (rootDir + "/LIN")
!! "lib/zeromq/WIN/x86/libzmq.*" |> Copy (rootDir + "/WIN/x86")
!! "lib/zeromq/WIN/x64/libzmq.*" |> Copy (rootDir + "/WIN/x64")
// compress
!! (rootDir + "/**/*.*")
|> Zip rootDir ("bin/fszmq-" + release.NugetVersion + ".zip"))
Target "NuGet" (fun _ ->
Paket.Pack(fun p ->
{ p with
OutputPath = "bin"
Version = release.NugetVersion
MinimumFromLockFile = true
ReleaseNotes = toLines release.Notes }))
Target "BuildPackage" DoNothing
// --------------------------------------------------------------------------------------
// Generate the documentation
let generateDocs (refDocs,helpDocs) debug =
// stage release notes for formatting
CopyFile "docs/content/release_notes.md" "RELEASE_NOTES.md"
// configure formatting options
let args = [ (if not debug then "--define:RELEASE" else "")
(if refDocs then "--define:REFERENCE" else "")
(if helpDocs then "--define:HELP" else "") ]
// do it!
if executeFSIWithArgs "docs/tools" "generate.fsx" args []
then traceImportant "Help generated"
else traceImportant "generating help documentation failed"
// clean up
DeleteFile "docs/content/release_notes.md"
Target "GenerateRefDocs" (fun _ -> generateDocs (true ,false) false)
Target "GenerateHelp" (fun _ -> generateDocs (false,true ) false)
Target "GenerateRefDocsLocal" (fun _ -> generateDocs (true ,false) true )
Target "GenerateHelpLocal" (fun _ -> generateDocs (false,true ) true )
Target "GenerateDocs" DoNothing
Target "GenerateDocsLocal" DoNothing
// --------------------------------------------------------------------------------------
// Release Scripts
Target "ReleaseDocs" (fun _ ->
let tempDocsDir = "temp/gh-pages"
CleanDir tempDocsDir
Repository.cloneSingleBranch "" (gitHome + "/" + gitName + ".git") "gh-pages" tempDocsDir
CopyRecursive "docs/output" tempDocsDir true |> tracefn "%A"
StageAll tempDocsDir
Git.Commit.Commit tempDocsDir (sprintf "Update generated documentation for version %s" release.NugetVersion)
Branches.push tempDocsDir)
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override
Target "All" DoNothing
"Clean"
==> "AssemblyInfo"
==> "Build"
==> "CopyBinaries"
==> "RunTests"
==> "All"
"All"
==> "Archive"
==> "NuGet"
==> "BuildPackage"
"CopyBinaries"
==> "CleanDocs"
==> "GenerateHelp"
==> "GenerateRefDocs"
==> "GenerateDocs"
=?> ("ReleaseDocs",isLocalBuild)
"CopyBinaries"
==> "CleanDocs"
==> "GenerateHelpLocal"
==> "GenerateRefDocsLocal"
==> "GenerateDocsLocal"
RunTargetOrDefault "All"