forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.fsx
144 lines (120 loc) · 4.97 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
// --------------------------------------------------------------------------------------
// FAKE build script
// --------------------------------------------------------------------------------------
#r @"packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.Git
open Fake.AssemblyInfoFile
open Fake.ReleaseNotesHelper
open System
setEnvironVar "MSBuild" (ProgramFilesX86 @@ @"\MSBuild\12.0\Bin\MSBuild.exe")
// Git configuration (used for publishing documentation in gh-pages branch)
// The profile where the project is posted
let gitHome = "https://github.com/dungpa"
// The name of the project on GitHub
let gitName = "fantomas"
let cloneUrl = "git@github.com:dungpa/fantomas.git"
// The name of the project
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
let project = "Fantomas"
// Short summary of the project
// (used as description in AssemblyInfo and as a short summary for NuGet package)
let summary = "Source code formatter for F#"
// Longer description of the project
// (used as a description for NuGet package; line breaks are automatically cleaned up)
let description = """This library aims at formatting F# source files based on a given configuration.
Fantomas will ensure correct indentation and consistent spacing between elements in the source files.
Some common use cases include
(1) Reformatting a code base to conform a universal page width
(2) Converting legacy code from verbose syntax to light syntax
(3) Formatting auto-generated F# signatures."""
// List of author names (for NuGet package)
let authors = [ "Anh-Dung Phan"; "Gustavo Guerra" ]
// Tags for your project (for NuGet package)
let tags = "F# fsharp formatting beautifier indentation indenter"
// (<solutionFile>.sln is built during the building process)
let solutionFile = "fantomas"
let testAssemblies = "src/**/bin/Release/*Tests*.dll"
Environment.CurrentDirectory <- __SOURCE_DIRECTORY__
let release = parseReleaseNotes (IO.File.ReadAllLines "RELEASE_NOTES.md")
// --------------------------------------------------------------------------------------
// Clean build results & restore NuGet packages
Target "Clean" (fun _ ->
CleanDirs ["bin"; "nuget"]
)
Target "AssemblyInfo" (fun _ ->
let shared =
[ Attribute.Product project
Attribute.Description summary
Attribute.Version release.AssemblyVersion
Attribute.FileVersion release.AssemblyVersion ]
CreateFSharpAssemblyInfo "src/Fantomas/AssemblyInfo.fs"
( Attribute.InternalsVisibleTo "Fantomas.Tests" :: Attribute.Title "FantomasLib" :: shared)
CreateFSharpAssemblyInfo "src/Fantomas.Cmd/AssemblyInfo.fs"
(Attribute.Title "Fantomas" :: shared)
)
// --------------------------------------------------------------------------------------
// Build library & test project
Target "Build" (fun _ ->
// We would like to build only one solution
!! ("src/" + solutionFile + ".sln")
|> MSBuildRelease "" "Rebuild"
|> ignore
)
Target "UnitTests" (fun _ ->
!! testAssemblies
|> NUnit (fun p ->
{ p with
DisableShadowCopy = true
TimeOut = TimeSpan.FromMinutes 20.
Framework = "4.5"
Domain = NUnitDomainModel.MultipleDomainModel
OutputFile = "TestResults.xml" })
)
// --------------------------------------------------------------------------------------
// Build a NuGet package
Target "NuGet" (fun _ ->
NuGet (fun p ->
{ p with
Authors = authors
Project = project
Summary = summary
Description = description
Version = release.NugetVersion
ReleaseNotes = String.Join(Environment.NewLine, release.Notes)
Tags = tags
OutputPath = "src/Fantomas.Cmd/bin/Release"
AccessKey = getBuildParamOrDefault "nugetkey" ""
// Allow publishing from local build
Publish = isLocalBuild
Dependencies = [ "FSharp.Compiler.Service", GetPackageVersion "packages" "FSharp.Compiler.Service" ] })
(project + ".nuspec")
)
Target "NuGetCLI" (fun _ ->
NuGet (fun p ->
{ p with
Authors = authors
Project = sprintf "%sCLI" project
Summary = sprintf "%s (CLI tool)" summary
Description = description
Version = release.NugetVersion
ReleaseNotes = String.Join(Environment.NewLine, release.Notes)
Tags = tags
OutputPath = "src/Fantomas.Cmd/bin/Release"
AccessKey = getBuildParamOrDefault "nugetkey" ""
// Allow publishing from local build
Publish = isLocalBuild
Dependencies = [] })
(project + "CLI.nuspec")
)
// --------------------------------------------------------------------------------------
// Run all targets by default. Invoke 'build <Target>' to override
Target "All" DoNothing
"Clean"
==> "AssemblyInfo"
==> "Build"
==> "UnitTests"
==> "All"
==> "NuGet"
==> "NuGetCLI"
RunTargetOrDefault "All"