forked from fsprojects/AzureStorageTypeProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.fsx
291 lines (236 loc) · 11.2 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
// --------------------------------------------------------------------------------------
// FAKE build script
// --------------------------------------------------------------------------------------
#r @"packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.Git
open Fake.AssemblyInfoFile
open Fake.ReleaseNotesHelper
open Fake.UserInputHelper
open Fake.Testing
open System
open System.IO
// Information about the project are used
// - for version and project name in generated AssemblyInfo file
// - by the generated NuGet package
// - to run tests and to publish documentation on GitHub gh-pages
// - for documentation, you also need to edit info in "docs/tools/generate.fsx"
// The name of the project
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
let project = "FSharp.Azure.StorageTypeProvider"
// Short summary of the project
// (used as description in AssemblyInfo and as a short summary for NuGet package)
let summary = "Allows easy access to Azure Storage assets through F# scripts."
// Longer description of the project
// (used as a description for NuGet package; line breaks are automatically cleaned up)
let description = """The F# Azure Storage Type Provider allows simple access to Blob, Table and Queue assets, using Azure Storage metadata to intelligently infer schema where possible, whilst providing a simple API for common tasks."""
// List of author names (for NuGet package)
let authors = [ "Isaac Abraham" ]
// Tags for your project (for NuGet package)
let tags = "azure, f#, fsharp, type provider, blob, table, queue, script"
// File system information
// (<solutionFile>.sln is built during the building process)
let solutionFile = "UnitTests"
// Pattern specifying assemblies to be tested using XUnit
let testAssemblies = "tests/**/bin/Release/*Tests*.dll"
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitOwner = "fsprojects"
let gitHome = "https://github.com/" + gitOwner
// The name of the project on GitHub
let gitName = "AzureStorageTypeProvider"
// The url for the raw files hosted
let gitRaw = environVarOrDefault "gitRaw" "https://raw.github.com/fsprojects"
// --------------------------------------------------------------------------------------
// END TODO: The rest of the file includes standard build steps
// --------------------------------------------------------------------------------------
// Read additional information from the release notes document
Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
let buildDir = "bin"
let tempDir = "temp"
// Read additional information from the release notes document
let releaseNotesData =
File.ReadAllLines "RELEASE_NOTES.md"
|> parseAllReleaseNotes
let release = List.head releaseNotesData
// Generate assembly info files with the right version & up-to-date information
Target "AssemblyInfo" (fun _ ->
let fileName = "src/" + project + "/AssemblyInfo.fs"
CreateFSharpAssemblyInfo fileName [ Attribute.Title project
Attribute.Product project
Attribute.Description summary
Attribute.Version release.AssemblyVersion
Attribute.FileVersion release.AssemblyVersion ])
// --------------------------------------------------------------------------------------
// Clean build results
Target "Clean" (fun _ -> CleanDirs [ "bin"; "temp"; "tests/integrationtests/bin" ])
Target "CleanDocs" (fun _ -> CleanDirs ["docs/output"])
// --------------------------------------------------------------------------------------
// Build library & test project
// --------------------------------------------------------------------------------------
// Build library & test project
Target "Build" (fun _ ->
!!("FSharp.Azure.StorageTypeProvider.sln")
|> MSBuildRelease "" "Rebuild"
|> ignore)
// --------------------------------------------------------------------------------------
// Run the unit tests using test runner
Target "ResetTestData" (fun _ ->
let emulatorPath =
[ "AzureStorageEmulator"; "WAStorageEmulator" ]
|> List.map (combinePaths ProgramFilesX86 << sprintf @"Microsoft SDKs\Azure\Storage Emulator\%s.exe")
|> List.tryFind fileExists
|> function
| None -> failwith "Unable to locate Azure Storage Emulator!"
| Some file -> file
{ defaultParams with
CommandLine = "start"
Program = ProgramFilesX86 </> emulatorPath } |> shellExec |> ignore
FSIHelper.executeFSI (__SOURCE_DIRECTORY__ </> @"tests\IntegrationTests") "ResetTestData.fsx" []
|> snd
|> Seq.iter(fun x -> printfn "%s" x.Message))
// Run integration tests
open Fake.AppVeyor
Target "RunTests" (fun _ ->
!!("UnitTests.sln") |> MSBuildRelease "" "Rebuild" |> ignore
FileHelper.CreateDir "TestOutput"
!!(testAssemblies) |> xUnit (fun args -> { args with XmlOutputPath = Some "TestOutput/xml" }))
// --------------------------------------------------------------------------------------
// Build a NuGet package
Target "NuGet"
(fun _ ->
NuGet (fun p ->
{ p with Authors = authors
Project = project
Title = "F# Azure Storage Type Provider"
Summary = summary
Description = description
Version = release.NugetVersion
ReleaseNotes = release.Notes |> String.concat Environment.NewLine
Tags = tags
OutputPath = "bin"
Dependencies = [ "WindowsAzure.Storage", "6.0.0" ]
References = [ "FSharp.Azure.StorageTypeProvider.dll" ]
Files =
([ "FSharp.Azure.StorageTypeProvider.xml"; "FSharp.Azure.StorageTypeProvider.dll"; "Microsoft.Azure.KeyVault.Core.dll"
"Microsoft.Data.Edm.dll"; "Microsoft.Data.OData.dll"; "Microsoft.Data.Services.Client.dll";
"Microsoft.WindowsAzure.Storage.dll"; "Newtonsoft.Json.dll"; "System.Spatial.dll" ]
|> List.map (fun file -> @"..\bin\" + file, Some "lib/net40", None))
@ [ "StorageTypeProvider.fsx", None, None ] })
("nuget/" + project + ".nuspec"))
[<AutoOpen>]
module AppVeyorHelpers =
let execOnAppveyor arguments =
let result =
ExecProcess
(fun info ->
info.FileName <- "appveyor"
info.Arguments <- arguments)
(TimeSpan.FromMinutes 2.0)
if result <> 0 then failwith (sprintf "Failed to execute appveyor command: %s" arguments)
trace "Published packages"
let publishOnAppveyor folder =
!! (folder + "*.nupkg")
|> Seq.iter (sprintf "PushArtifact %s" >> execOnAppveyor)
// --------------------------------------------------------------------------------------
// Generate the documentation
Target "GenerateReferenceDocs" (fun _ ->
if not <| executeFSIWithArgs "docs/tools" "generate.fsx" ["--define:RELEASE"; "--define:REFERENCE"] [] then
failwith "generating reference documentation failed")
let generateHelp fail debug =
let args =
[ if not debug then yield "--define:RELEASE"
yield "--define:HELP"]
if executeFSIWithArgs "docs/tools" "generate.fsx" args [] then
traceImportant "Help generated"
else
if fail then failwith "generating help documentation failed"
else traceImportant "generating help documentation failed"
Target "GenerateHelp" (fun _ ->
DeleteFile "docs/content/release-notes.md"
CopyFile "docs/content/" "RELEASE_NOTES.md"
Rename "docs/content/release-notes.md" "docs/content/RELEASE_NOTES.md"
DeleteFile "docs/content/license.md"
CopyFile "docs/content/" "LICENSE.txt"
Rename "docs/content/license.md" "docs/content/LICENSE.txt"
CopyFile buildDir "packages/FSharp.Core/lib/net40/FSharp.Core.sigdata"
CopyFile buildDir "packages/FSharp.Core/lib/net40/FSharp.Core.optdata"
generateHelp false false)
Target "GenerateHelpDebug" (fun _ ->
DeleteFile "docs/content/release-notes.md"
CopyFile "docs/content/" "RELEASE_NOTES.md"
Rename "docs/content/release-notes.md" "docs/content/RELEASE_NOTES.md"
DeleteFile "docs/content/license.md"
CopyFile "docs/content/" "LICENSE.txt"
Rename "docs/content/license.md" "docs/content/LICENSE.txt"
generateHelp true true)
Target "KeepRunning" (fun _ ->
use watcher = !! "docs/content/**/*.*" |> WatchChanges (fun changes ->
generateHelp false false)
traceImportant "Waiting for help edits. Press any key to stop."
System.Console.ReadKey() |> ignore
watcher.Dispose())
Target "GenerateDocs" DoNothing
// --------------------------------------------------------------------------------------
// Release Scripts
Target "ReleaseDocs" (fun _ ->
let tempDocsDir = "temp/gh-pages"
CleanDir tempDocsDir
Repository.cloneSingleBranch "" (gitHome + "/" + gitName + ".git") "gh-pages" tempDocsDir
Git.CommandHelper.runSimpleGitCommand tempDocsDir "rm . -f -r" |> ignore
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)
Target "Release" (fun _ ->
let user =
match getBuildParam "github-user" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> getUserInput "Username: "
let pw =
match getBuildParam "github-pw" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> getUserPassword "Password: "
let remote =
Git.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]
StageAll ""
Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
Branches.pushBranch "" remote (Information.getBranchName "")
Branches.tag "" release.NugetVersion
Branches.pushTag "" remote release.NugetVersion)
Target "LocalDeploy" (fun _ ->
directoryInfo @"bin"
|> filesInDirMatching "*.nupkg"
|> Seq.map(fun x -> x.FullName)
|> CopyFiles "..\..\LocalPackages")
Target "BuildServerDeploy" (fun _ -> publishOnAppveyor buildDir)
FinalTarget "PublishTestsResultsToAppveyor" (fun _ ->
UploadTestResultsXml TestResultsType.Xunit "TestOutput")
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override
Target "All" DoNothing
"Clean"
==> "AssemblyInfo"
==> "Build"
==> "Nuget"
==> "ResetTestData"
==> "RunTests"
=?> ("LocalDeploy", buildServer = LocalBuild)
=?> ("BuildServerDeploy", buildServer = AppVeyor)
"CleanDocs"
==> "GenerateHelp"
"CleanDocs"
==> "GenerateHelpDebug"
"RunTests"
==> "GenerateHelp"
==> "GenerateReferenceDocs"
==> "GenerateDocs"
==> "ReleaseDocs"
==> "Release"
"GenerateHelp"
==> "KeepRunning"
ActivateFinalTarget "PublishTestsResultsToAppveyor"
RunTargetOrDefault "RunTests"