forked from jmquigs/ModelMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.fsx
More file actions
269 lines (218 loc) · 7.77 KB
/
build.fsx
File metadata and controls
269 lines (218 loc) · 7.77 KB
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
// include Fake lib
#r @"packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.AssemblyInfoFile
open System.IO
let buildDir = "./build/"
let buildBin = buildDir + "/Bin"
let testDir = "./test"
let deployDir = "./deploy/"
let nativeOut = "./Release"
let version = "1.0.0.13" // or retrieve from CI server
let updateRcVersions rcFile =
let lines = File.ReadAllLines(rcFile)
let replVer (vSearch:string) (formatter:unit -> string) (l:string) =
if l.TrimStart().ToUpperInvariant().StartsWith(vSearch.ToUpperInvariant()) then
let vidx = l.ToUpperInvariant().IndexOf(vSearch.ToUpperInvariant())
l.Substring(0,vidx) + vSearch + formatter()
else
l
let fn =
(replVer "VALUE \"FileVersion\", " (fun _ -> (sprintf "\"%s\"" version) ))
>> (replVer "VALUE \"ProductVersion\", " (fun _ -> (sprintf "\"%s\"" version)))
>> (replVer "FILEVERSION " (fun _ -> (sprintf "%s" (version.Replace(".",",") ))))
>> (replVer "PRODUCTVERSION " (fun _ -> (sprintf "%s" (version.Replace(".",",") ))))
let lines = lines |> Array.map fn
File.WriteAllLines(rcFile, lines)
trace ("Updating versions in rc file: " + rcFile)
()
Target "Clean" (fun _ ->
CleanDirs [buildDir; testDir; deployDir; ".\ModelMod\Release"; ".\MMLoader\Release"; nativeOut]
)
Target "Default" (fun _ ->
trace "Build Complete"
)
Target "BuildNative" (fun _ ->
!! "**/ModelMod.sln"
|> MSBuildRelease buildBin "Build" // note, native code ignores the buildBin override, so we have to copy manually later
|> Log "BuildNative-Output: "
)
Target "MakeAssInfo" (fun _ ->
CreateFSharpAssemblyInfo "./MMLaunch/AssemblyInfo.fs"
[Attribute.Title "ModelMod launcher application"
Attribute.Description ""
Attribute.Guid "2ce8e338-7143-4f97-ab39-3e90ca50bdf2"
Attribute.Product "ModelMod"
Attribute.Version version
Attribute.FileVersion version]
CreateFSharpAssemblyInfo "./MMManaged/AssemblyInfo.fs"
[Attribute.Title "ModelMod managed code library"
Attribute.Description ""
Attribute.Guid "13c62567-ab30-4954-9c47-213bc2a0ab7e"
Attribute.Product "ModelMod"
Attribute.Version version
Attribute.FileVersion version]
CreateFSharpAssemblyInfo "./StartupApp/AssemblyInfo.fs"
[Attribute.Title "ModelMod launcher 'shortcut'"
Attribute.Description ""
Attribute.Guid "df438f0d-1e48-42d2-bc4d-7b3500c48515"
Attribute.Product "ModelMod"
Attribute.Version version
Attribute.FileVersion version]
CreateCSharpAssemblyInfo "./MMAppDomain/Properties/AssemblyInfo.cs"
[Attribute.Title "ModelMod CLR app domain host"
Attribute.Description ""
Attribute.Guid "7b59b7f1-5876-4dd3-abc5-ee380144983d"
Attribute.Product "ModelMod"
Attribute.Version version
Attribute.FileVersion version]
)
Target "UpdateRcVersions" (fun _ ->
updateRcVersions ("./ModelMod/ModelMod.rc")
updateRcVersions ("./MMLoader/MMLoader.rc")
)
Target "BuildCS" (fun _ ->
!! "**/*.csproj"
|> MSBuildRelease buildBin "Build"
|> Log "BuildCS-Output: "
)
Target "BuildFS" (fun _ ->
!! "**/*.fsproj"
-- "**/Test.*"
|> MSBuildRelease buildBin "Build"
|> Log "BuildFS-Output: "
)
Target "BuildTest" (fun _ ->
!! "**/Test.*.fsproj"
|> MSBuildRelease testDir "Build"
|> Log "BuildTest-Output: "
)
Target "Test" (fun _ ->
!! (testDir + "/Test.*.dll")
|> NUnit (fun p ->
{p with
DisableShadowCopy = true;
OutputFile = testDir + "/Test.Results.xml" })
)
Target "CopyNative" (fun _ ->
!! (nativeOut + "/**/*.*")
-- "**/*.iobj"
-- "**/*.ipdb"
-- "**/*.exp"
-- "**/*.lib"
-- "**/*.pdb"
|> CopyFiles buildBin
)
Target "CopyStuff" (fun _ ->
let logsDir = buildDir + "/Logs"
ensureDirectory (buildDir + "/Logs")
System.IO.File.WriteAllText(logsDir + "/README.TXT", "Log files will be written here when you launch a game with ModelMod.");
!! ("./BlenderScripts/*.*")
|> CopyFiles (buildDir + "/BlenderScripts")
!! ("./SnapshotProfiles/*.*")
|> CopyFiles (buildDir + "/SnapshotProfiles")
!! ("./BlenderScripts/io_scene_mmobj/*.*")
|> CopyFiles (buildDir + "/BlenderScripts/io_scene_mmobj")
!! ("./LICENSE.txt")
|> CopyFiles (buildDir)
!! ("./Docs/binpackage/README.md")
|> CopyFiles (buildDir)
!! (buildBin + "/ModelMod.exe")
|> CopyFiles buildDir
)
Target "Zip" (fun _ ->
!! (buildDir + "/**/*.*")
-- "**/*.xml"
-- "**/*.zip"
|> Zip buildDir (deployDir + "ModelMod-" + version + ".zip")
)
Target "UpdateVersions" (fun _ ->
trace ("Version updated to: " + version)
)
// Signing stuff
Target "SignBuild" (fun _ ->
let certExpired = System.DateTime.Parse("11/10/2016")
if (System.DateTime.Now > certExpired) then
failwithf "cert expired, rewind the clock to before %A or renew the cert for $$$" certExpired
// TODO: download last build from appveyor
let signDir = "./sign"
let files = Directory.GetFiles(signDir, "*.zip")
if files.Length <> 1 then
failwithf "expected only one zip in signDir, but got: %A" files
let targetZip = files.[0]
let zipTemp = Path.Combine(signDir, "ziptemp")
if (Directory.Exists zipTemp) then
Directory.Delete(zipTemp,true)
Directory.CreateDirectory zipTemp |> ignore
Unzip zipTemp targetZip
let files =
[
"ModelMod.exe";
"Bin\ModelMod.exe";
"Bin\ModelMod.dll";
"Bin\MMLoader.exe";
"Bin\MeshView.exe";
"Bin\WpfInteropSample.exe";
"Bin\MMLaunch.exe";
"Bin\MMManaged.dll";
"Bin\ModelModCLRAppDomain.dll";
] |> List.map (fun p -> Path.Combine(zipTemp,p))
files |> List.iter (fun f ->
if not (File.Exists f) then
failwithf "File does not exist: %A" f
)
let certPathFile = "certpath.txt"
if not (File.Exists certPathFile) then
failwithf "PK path file not found: %s" certPathFile
let certPath = File.ReadAllText(certPathFile).Trim()
printfn "Signing %A" files
printfn "Enter cert key password (shhhhh):"
let pass = System.Console.ReadLine().Trim()
let passFile = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments),sprintf "__temp__pass_%s.txt" (System.Guid.NewGuid().ToString()))
try
File.WriteAllText(passFile,pass)
SignTool @"C:\Program Files (x86)\Windows Kits\8.1\bin\x64" certPath passFile files
File.Delete passFile
with
| e ->
File.Delete passFile
raise e
let outDir = @".\deploy\signed"
if (Directory.Exists outDir) then
Directory.Delete (outDir,true)
Directory.CreateDirectory outDir |> ignore
let outZip = Path.Combine(outDir, Path.GetFileName(targetZip))
CreateZip zipTemp outZip "modelmod" 9 false (Directory.GetFiles(zipTemp,"*.*",SearchOption.AllDirectories))
printfn "Created zip with signed files: %A" outZip
)
// Top level targets
Target "FullBuild" (fun _ ->
Run "AppveyorBuild"
Run "AppveyorTest"
Run "AppveyorPackage"
)
Target "Package" ignore
Target "AppveyorBuild" ignore
Target "AppveyorTest" ignore
Target "AppveyorPackage" ignore
// Dependencies
"MakeAssInfo"
==> "UpdateRcVersions"
==> "UpdateVersions"
"CopyNative"
==> "CopyStuff"
==> "Zip"
==> "Package"
"UpdateVersions"
==> "Clean"
==> "BuildCS"
==> "BuildFS"
==> "BuildNative"
==> "AppveyorBuild"
"BuildTest"
==> "Test"
==> "AppveyorTest"
"Package"
==> "AppveyorPackage"
// start build
RunTargetOrDefault "UpdateVersions"