-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
210 lines (188 loc) · 5.31 KB
/
premake5.lua
File metadata and controls
210 lines (188 loc) · 5.31 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
debug_libs = { "System" }
release_libs = debug_libs
solution "reliable"
kind "ConsoleApp"
language "C#"
platforms { "x64" }
configurations { "Debug", "Release" }
flags { }
configuration "Debug"
symbols "On"
defines { "DEBUG" }
links { debug_libs }
configuration "Release"
symbols "Off"
optimize "Speed"
links { release_libs }
project "test"
files { "test.cs", "reliable.cs", "reliable_test.cs" }
project "soak"
files { "soak.cs", "reliable.cs" }
project "stats"
files { "stats.cs", "reliable.cs" }
project "fuzz"
files { "fuzz.cs", "reliable.cs" }
if os.ishost "windows" then
-- Windows
newaction
{
trigger = "solution",
description = "Create and open the reliable.io solution",
execute = function ()
os.execute "premake5 vs2017"
os.execute "start reliable.sln"
end
}
newaction
{
trigger = "docker",
description = "Build and run reliable.io.net tests inside docker",
execute = function ()
os.execute "rmdir /s/q docker\\reliable.io.net & mkdir docker\\reliable.io.net \z
&& copy *.cs docker\\reliable.io.net\\ \z
&& copy premake5.lua docker\\reliable.io.net\\ \z
&& cd docker \z
&& docker build -t \"netcodeio:reliable.io.net-server\" . \z
&& rmdir /s/q reliable.io.net \z
&& docker run -ti -p 40000:40000/udp netcodeio:reliable.io.net-server"
end
}
else
-- MacOSX and Linux.
newaction
{
trigger = "solution",
description = "Create and open the reliable.io solution",
execute = function ()
os.execute [[
dotnet new console --force -o _test -n test && rm _test/Program.cs
cp test.cs reliable.cs reliable_test.cs _test]]
os.execute [[
dotnet new console --force -o _soak -n soak && rm _soak/Program.cs
cp soak.cs reliable.cs _soak]]
os.execute [[
dotnet new console --force -o _stats -n stats && rm _stats/Program.cs
cp stats.cs reliable.cs _stats]]
os.execute [[
dotnet new console --force -o _fuzz -n fuzz && rm _fuzz/Program.cs
cp fuzz.cs reliable.cs _fuzz]]
os.execute [[
dotnet new sln --force -n reliable
dotnet sln add _*/*.csproj]]
end
}
newaction
{
trigger = "test",
description = "Build and run all unit tests",
execute = function ()
os.execute "test ! -d _test && premake5 solution"
os.execute "dotnet build -o ../bin _test/test.csproj && dotnet ./bin/test.dll"
end
}
newaction
{
trigger = "soak",
description = "Build and run soak test",
execute = function ()
os.execute "test ! -d _soak && premake5 solution"
os.execute "dotnet build -o ../bin _soak/soak.csproj && dotnet ./bin/soak.dll"
end
}
newaction
{
trigger = "stats",
description = "Build and run stats example",
execute = function ()
os.execute "test ! -d _stats && premake5 solution"
os.execute "dotnet build -o ../bin _stats/stats.csproj && dotnet ./bin/stats.dll"
end
}
newaction
{
trigger = "fuzz",
description = "Build and run fuzz test",
execute = function ()
os.execute "test ! -d _fuzz && premake5 solution"
os.execute "dotnet build -o ../bin _fuzz/fuzz.csproj && dotnet ./bin/fuzz.dll"
end
}
newaction
{
trigger = "docker",
description = "Build and run reliable.io.net tests inside docker",
execute = function ()
os.execute "rm -rf docker/reliable.io.net && mkdir -p docker/reliable.io.net \z
&& cp *.cs docker/reliable.io.net \z
&& cp premake5.lua docker/reliable.io.net \z
&& cd docker \z
&& docker build -t \"netcodeio:reliable.io.net-server\" . \z
&& rm -rf reliable.io.net \z
&& docker run -ti -p 40000:40000/udp netcodeio:reliable.io.net-server"
end
}
newaction
{
trigger = "loc",
description = "Count lines of code",
execute = function ()
os.execute "wc -l *.cs"
end
}
end
newaction
{
trigger = "clean",
description = "Clean all build files and output",
execute = function ()
files_to_delete =
{
"Makefile",
"app.config",
"packages.config",
"*.make",
"*.txt",
"*.zip",
"*.tar.gz",
"*.db",
"*.opendb",
"*.csproj",
"*.csproj.user",
"*.sln",
"*.xcodeproj",
"*.xcworkspace"
}
directories_to_delete =
{
"_test",
"_soak",
"_stats",
"_fuzz",
"obj",
"ipch",
"bin",
".vs",
"Debug",
"Release",
"release",
"packages",
"cov-int",
"docs",
"xml",
"docker/reliable.io.net"
}
for i,v in ipairs( directories_to_delete ) do
os.rmdir( v )
end
if not os.ishost "windows" then
os.execute "find . -name .DS_Store -delete"
for i,v in ipairs( files_to_delete ) do
os.execute( "rm -f " .. v )
end
else
for i,v in ipairs( files_to_delete ) do
os.execute( "del /F /Q " .. v )
end
end
end
}