forked from jamilan/VersionControlPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.pl
executable file
·148 lines (129 loc) · 2.81 KB
/
build.pl
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
#!/usr/bin/perl
use warnings;
use strict;
use Getopt::Long;
use Cwd;
use File::Path qw (rmtree mkpath);
use lib 'Test';
use VCSTest;
my ($testoption,$test, $target, @configs);
GetOptions("test"=>\$test, "testoption=s"=>\$testoption,
"target=s"=>\$target, "configs=s"=>\@configs);
@configs = split(/,/,join(',',@configs));
sub BuildLinux ($);
sub TestLinux ($);
$testoption = "nonverbose" unless ($testoption);
if (not $target)
{
if ($^O eq "darwin")
{
$target = "mac";
}
elsif ($^O eq "MSWin32")
{
$target = "win32";
}
}
$ENV{'TARGET'} = $target;
if ($target eq "mac")
{
unless ($test)
{
BuildMac();
}
else
{
TestMac();
}
}
elsif ($target eq "win32")
{
unless ($test)
{
BuildWin32();
}
else
{
TestWin32();
}
}
elsif ($target eq "linux32")
{
unless ($test)
{
BuildLinux ($target);
}
else
{
TestLinux ($target);
}
}
elsif ($target eq "linux64")
{
unless ($test)
{
BuildLinux ($target);
}
else
{
TestLinux ($target);
}
}
else
{
die ("Unknown platform");
}
sub BuildMac
{
system ("rm", "-rf", "Build");
system("make" , "-f", "Makefile.osx", "all") && die ("Failed to build version control plugins");
}
sub TestMac
{
$ENV{'P4DEXEC'} = "PerforceBinaries/OSX/p4d";
$ENV{'P4EXEC'} = "PerforceBinaries/OSX/p4";
$ENV{'P4PLUGIN'} = "Build/OSXi386/PerforcePlugin";
$ENV{'TESTSERVER'} = "Build/OSXi386/TestServer";
# Teamcity artifacts looses their file attributes on transfer
chmod 0755, glob("Build/OSXi386/*");
IntegrationTest($testoption);
}
sub BuildWin32
{
rmtree("Build");
system("msbuilder.cmd", "VersionControl.sln", "P4Plugin", "Win32") && die ("Failed to build PerforcePlugin.exe");
system("msbuilder.cmd", "VersionControl.sln", "SvnPlugin", "Win32") && die ("Failed to build SubversionPlugin.exe");
system("msbuilder.cmd", "VersionControl.sln", "TestServer", "Win32") && die ("Failed to build TestServer.exe");
}
sub TestWin32
{
$ENV{'P4DEXEC'} = 'PerforceBinaries\Win_x64\p4d.exe';
$ENV{'P4EXEC'} = 'PerforceBinaries\Win_x64\p4.exe';
$ENV{'P4PLUGIN'} = 'Build\Win32\PerforcePlugin.exe';
$ENV{'TESTSERVER'} = 'Build\Win32\TestServer.exe';
IntegrationTest($testoption);
}
sub BuildLinux ($)
{
my $platform = shift;
my $cflags = '-O3 -fPIC -fexceptions -fvisibility=hidden -DLINUX';
my $cxxflags = "$cflags -Wno-ctor-dtor-private";
my $ldflags = '';
if ($platform eq 'linux32') {
$cflags = "$cflags -m32";
$cxxflags = "$cxxflags -m32";
$ldflags = '-m32';
}
$ENV{'CFLAGS'} = $cflags;
$ENV{'CXXFLAGS'} = $cxxflags;
$ENV{'LDFLAGS'} = $ldflags;
$ENV{'PLATFORM'} = $platform;
system ('make', '-f', 'Makefile.gnu', 'clean');
system ('make', '-f', 'Makefile.gnu') && die ("Failed to build $platform");
}
sub TestLinux ($)
{
my $platform = shift;
# Teamcity artifacts looses their file attributes on transfer
chmod 0755, glob("Build/OSXi386/$platform/*");
}