-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.fsx
161 lines (128 loc) · 5.51 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
// --------------------------------------------------------------------------------------
// FAKE build script
// --------------------------------------------------------------------------------------
#r "paket: groupref build //"
#load "./.fake/build.fsx/intellisense.fsx"
open Fake.Core
open Fake.Core.TargetOperators
open Fake.DotNet
open Fake.IO
open Fake.IO.FileSystemOperators
open Fake.IO.Globbing.Operators
open Fake.Tools
open Fake.Api
open System
// --------------------------------------------------------------------------------------
// Information about the project to be used at NuGet and in AssemblyInfo files
// --------------------------------------------------------------------------------------
Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
let gitOwner = "mbraceproject"
let gitName = "MBrace.Azure"
let gitHome = "https://github.com/" + gitOwner
let artifactsDir = __SOURCE_DIRECTORY__ @@ "artifacts"
let testResults = __SOURCE_DIRECTORY__ @@ "testResults"
// annoyingly, fake-cli will not load environment variables before module initialization; delay.
let configuration () = Environment.environVarOrDefault "Configuration" "Release" |> DotNet.BuildConfiguration.fromString
let release = ReleaseNotes.load "RELEASE_NOTES.md"
// --------------------------------------------------------------------------------------
// Clean and restore packages
Target.create "Clean" (fun _ ->
Shell.cleanDirs [artifactsDir ; testResults]
)
// --------------------------------------------------------------------------------------
// Build
Target.create "Build" (fun _ ->
DotNet.build (fun opts ->
{ opts with
Configuration = configuration()
MSBuildParams =
{ opts.MSBuildParams with
Properties = [("Version", release.NugetVersion)] }
}) __SOURCE_DIRECTORY__
)
// --------------------------------------------------------------------------------------
// Run the unit tests using test runner & kill test runner when complete
Target.create "RunTests" (fun _ ->
DotNet.test (fun c ->
{ c with
NoBuild = true
Blame = true
Configuration = configuration()
ResultsDirectory = Some testResults
Logger = Some "trx" }) __SOURCE_DIRECTORY__
)
// --------------------------------------------------------------------------------------
// Build a NuGet package
Target.create "NuGet.Pack" (fun _ ->
let releaseNotes = String.toLines release.Notes |> System.Net.WebUtility.HtmlEncode
DotNet.pack (fun pack ->
{ pack with
OutputPath = Some artifactsDir
Configuration = DotNet.BuildConfiguration.Release
MSBuildParams =
{ pack.MSBuildParams with
Properties =
[("Version", release.NugetVersion)
("PackageReleaseNotes", releaseNotes)] }
}) __SOURCE_DIRECTORY__
)
Target.create "NuGet.ValidateSourceLink" (fun _ ->
for nupkg in !! (artifactsDir @@ "*.nupkg") do
let p = DotNet.exec id "sourcelink" (sprintf "test %s" nupkg)
if not p.OK then failwithf "failed to validate sourcelink for %s" nupkg
)
Target.create "NuGet.Push" (fun _ ->
for artifact in !! (artifactsDir + "/*nupkg") do
let source = "https://api.nuget.org/v3/index.json"
let key = Environment.GetEnvironmentVariable "NUGET_KEY"
let result = DotNet.exec id "nuget" (sprintf "push -s %s -k %s %s" source key artifact)
if not result.OK then failwith "failed to push packages"
)
// --------------------------------------------------------------------------------------
// Github Releases
Target.create "ReleaseGitHub" (fun _ ->
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.exec "" (sprintf "Bump version to %s" release.NugetVersion)
Git.Branches.pushBranch "" remote (Git.Information.getBranchName "")
Git.Branches.tag "" release.NugetVersion
Git.Branches.pushTag "" remote release.NugetVersion
let client =
match Environment.GetEnvironmentVariable "GITHUB_TOKEN" with
| null ->
let user =
match Environment.environVarOrDefault "github-user" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserInput "Username: "
let pw =
match Environment.environVarOrDefault "github-pw" "" with
| s when not (String.IsNullOrWhiteSpace s) -> s
| _ -> UserInput.getUserInput "Password: "
GitHub.createClient user pw
| token -> GitHub.createClientWithToken token
// release on github
client
|> GitHub.draftNewRelease gitOwner gitName release.NugetVersion (release.SemVer.PreRelease <> None) release.Notes
|> GitHub.publishDraft
|> Async.RunSynchronously
)
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override
Target.create "Default" ignore
Target.create "Release" ignore
"Clean"
==> "Build"
==> "RunTests"
==> "NuGet.Pack"
//==> "NuGet.ValidateSourceLink"
==> "Default"
"Build"
==> "NuGet.Push"
==> "ReleaseGithub"
==> "Release"
// start build
Target.runOrDefault "Default"