Fixed buildbot Perl scripts for Mac OS X build (bug 5601, r=dvander).
Former-commit-id: 375e91c1d22c5cc2a9107bbc804cbc17794421d4
This commit is contained in:
parent
e5b990b8e0
commit
7f13ae3e4f
|
@ -14,7 +14,7 @@ chdir(Build::PathFormat('../..'));
|
|||
|
||||
#Do the annoying revision bumping.
|
||||
#Linux needs some help here.
|
||||
if ($^O eq "linux")
|
||||
if ($^O eq "linux" || $^O eq "darwin")
|
||||
{
|
||||
Build::Command("flip -u modules.versions");
|
||||
Build::Command("flip -u support/versionchanger.pl");
|
||||
|
@ -26,7 +26,7 @@ my $DEVENV = "C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe";
|
|||
|
||||
#Build the amxmodx builder tool.
|
||||
chdir('installer/builder');
|
||||
if ($^O eq "linux") {
|
||||
if ($^O eq "linux" || $^O eq "darwin") {
|
||||
Build::Command("make");
|
||||
} else {
|
||||
Build::Command("\"$DEVENV\" builder.csproj /p:Configuration=Release /t:Rebuild");
|
||||
|
@ -45,13 +45,15 @@ Build::Command("mkdir " . Build::PathFormat('../OUTPUT'));
|
|||
open(DIRECTIONS, '>installer/builder/directions.info');
|
||||
if ($^O eq "linux") {
|
||||
print DIRECTIONS "compress = /bin/tar\n";
|
||||
} elsif ($^O eq "darwin") {
|
||||
print DIRECTIONS "compress = /usr/bin/zip\n";
|
||||
} else {
|
||||
print DIRECTIONS "compress = C:\\WINDOWS\\zip.exe\n";
|
||||
}
|
||||
print DIRECTIONS "source = " . Cwd::abs_path('.') . "\n";
|
||||
print DIRECTIONS "makeopts = \n";
|
||||
print DIRECTIONS "output = " . Cwd::abs_path('../OUTPUT') . "\n";
|
||||
if ($^O eq "linux") {
|
||||
if ($^O eq "linux" || $^O eq "darwin") {
|
||||
print DIRECTIONS "devenv = /usr/bin/make\n";
|
||||
} else {
|
||||
print DIRECTIONS "devenv = $DEVENV\n";
|
||||
|
|
|
@ -33,8 +33,9 @@ $version .= '-hg' . Build::HgRevNum('.');
|
|||
#Switch to the output folder.
|
||||
chdir(Build::PathFormat('../../../OUTPUT'));
|
||||
|
||||
my (@packages);
|
||||
my (@packages,@mac_exclude);
|
||||
@packages = ('base', 'cstrike', 'dod', 'esf', 'ns', 'tfc', 'ts');
|
||||
@mac_exclude = ('esf', 'ns', 'ts');
|
||||
|
||||
my ($major,$minor) = ($version =~ /^(\d+)\.(\d+)/);
|
||||
$ftp_path .= "/$major.$minor";
|
||||
|
@ -58,9 +59,12 @@ my ($i);
|
|||
for ($i = 0; $i <= $#packages; $i++) {
|
||||
my ($filename);
|
||||
if ($^O eq "linux") {
|
||||
$filename = "amxmodx-$version-" . $packages[$i] . ".tar.gz";
|
||||
$filename = "amxmodx-$version-" . $packages[$i] . "-linux.tar.gz";
|
||||
} elsif ($^O eq "darwin") {
|
||||
next if ($packages[$i] ~~ @mac_exclude);
|
||||
$filename = "amxmodx-$version-" . $packages[$i] . "-mac.zip";
|
||||
} else {
|
||||
$filename = "amxmodx-$version-" . $packages[$i] . ".zip";
|
||||
$filename = "amxmodx-$version-" . $packages[$i] . "-windows.zip";
|
||||
}
|
||||
print "Uploading $filename...\n";
|
||||
$ftp->put($filename)
|
||||
|
|
|
@ -10,7 +10,7 @@ require 'helpers.pm';
|
|||
chdir('../../installer/builder');
|
||||
|
||||
my $output;
|
||||
if ($^O eq "linux") {
|
||||
if ($^O eq "linux" || $^O eq "darwin") {
|
||||
$output = `mono builder.exe directions.info`;
|
||||
} else {
|
||||
$output = `builder.exe directions.info`;
|
||||
|
|
Loading…
Reference in New Issue
Block a user