r=bhearsum - checkout release tools (l10nverify) from hg rather than CVS - fixup Thunderbird hg repo paths git-svn-id: svn://10.0.0.236/trunk@256206 18797224-902f-48f8-a5cc-f745e15eee43
258 lines
8.6 KiB
Perl
258 lines
8.6 KiB
Perl
#
|
|
# Repack step. Unpacks, modifies, repacks a Firefox en-US build.
|
|
# Primary use is for l10n (localization) builds.
|
|
#
|
|
package Bootstrap::Step::Repack;
|
|
use Bootstrap::Step;
|
|
use Bootstrap::Config;
|
|
use Bootstrap::Util qw(CvsCatfile);
|
|
use MozBuild::Util qw(MkdirWithPath);
|
|
@ISA = ("Bootstrap::Step");
|
|
|
|
sub Execute {
|
|
my $this = shift;
|
|
|
|
my $config = new Bootstrap::Config();
|
|
my $l10n_buildDir = $config->Get(sysvar => 'l10n_buildDir');
|
|
my $productTag = $config->Get(var => 'productTag');
|
|
my $build = $config->Get(var => 'build');
|
|
my $logDir = $config->Get(sysvar => 'logDir');
|
|
my $l10n_buildPlatform = $config->Get(sysvar => 'l10n_buildPlatform');
|
|
my $sysname = $config->SystemInfo(var => 'sysname');
|
|
my $buildTag = $productTag . '_BUILD' . $build;
|
|
|
|
my $buildLog = catfile($logDir, 'repack_' . $buildTag . '-build-l10n.log');
|
|
my $lastBuilt = catfile($l10n_buildDir, $l10n_buildPlatform, 'last-built');
|
|
unlink($lastBuilt)
|
|
or $this->Log(msg => "Cannot unlink last-built file $lastBuilt: $!");
|
|
$this->Log(msg => "Unlinked $lastBuilt");
|
|
|
|
# For Cygwin only, ensure that the system mount point is textmode
|
|
# This forces CVS to use DOS-style carriage-return EOL characters.
|
|
if ($sysname =~ /cygwin/i) {
|
|
$this->Shell(
|
|
cmd => 'mount',
|
|
cmdArgs => ['-t', '-sc', '/cygdrive'],
|
|
dir => $buildDir,
|
|
);
|
|
}
|
|
|
|
$this->Shell(
|
|
cmd => './build-seamonkey.pl',
|
|
cmdArgs => ['--once', '--mozconfig', 'mozconfig', '--depend',
|
|
'--config-cvsup-dir',
|
|
catfile($l10n_buildDir, 'tinderbox-configs')],
|
|
dir => $l10n_buildDir,
|
|
logFile => $buildLog,
|
|
timeout => 36000
|
|
);
|
|
|
|
# For Cygwin only, set the system mount point back to binmode
|
|
# This forces CVS to use Unix-style linefeed EOL characters.
|
|
if ($sysname =~ /cygwin/i) {
|
|
$this->Shell(
|
|
cmd => 'mount',
|
|
cmdArgs => ['-b', '-sc', '/cygdrive'],
|
|
dir => $buildDir,
|
|
);
|
|
}
|
|
}
|
|
|
|
sub Verify {
|
|
my $this = shift;
|
|
|
|
my $config = new Bootstrap::Config();
|
|
my $productTag = $config->Get(var => 'productTag');
|
|
my $product = $config->Get(var => 'product');
|
|
my $build = $config->Get(var => 'build');
|
|
my $oldBuild = $config->Get(var => 'oldBuild');
|
|
my $logDir = $config->Get(sysvar => 'logDir');
|
|
my $version = $config->GetVersion(longName => 0);
|
|
my $oldVersion = $config->GetOldVersion(longName => 0);
|
|
my $mozillaCvsroot = $config->Get(var => 'mozillaCvsroot');
|
|
my $verifyDir = $config->Get(var => 'verifyDir');
|
|
my $hgToolsRepo = $config->Get(var => 'hgToolsRepo');
|
|
my $hgToolsTag = $config->Get(var => 'hgToolsTag');
|
|
my $stagingServer = $config->Get(var => 'stagingServer');
|
|
my $linuxExtension = $config->GetLinuxExtension();
|
|
my $buildTag = $productTag.'_BUILD'.$build;
|
|
|
|
# l10n metadiff test
|
|
|
|
my $verifyDirVersion = catfile($verifyDir, $product . '-' . $version);
|
|
|
|
MkdirWithPath(dir => $verifyDirVersion)
|
|
or die("Cannot mkdir $verifyDirVersion: $!");
|
|
|
|
|
|
$this->HgClone(
|
|
repo => $hgToolsRepo,
|
|
tag => $hgToolsTag,
|
|
workDir => $verifyDirVersion
|
|
);
|
|
|
|
# Download current release
|
|
$this->Shell(
|
|
cmd => 'rsync',
|
|
cmdArgs => ['-Lav',
|
|
'-e', 'ssh',
|
|
'--include=*.dmg',
|
|
'--include=*.exe',
|
|
'--include=*.tar.'.$linuxExtension,
|
|
'--exclude=*',
|
|
$stagingServer . ':/home/ftp/pub/' . $product
|
|
. '/nightly/' . $version . '-candidates/build' . $build . '/*',
|
|
$product . '-' . $version . '-build' . $build . '/',
|
|
],
|
|
dir => catfile($verifyDirVersion, 'tools', 'release', 'l10n'),
|
|
logFile =>
|
|
catfile($logDir, 'repack_verify-download_' . $version . '.log'),
|
|
timeout => 3600
|
|
);
|
|
|
|
# Download previous release
|
|
$this->Shell(
|
|
cmd => 'rsync',
|
|
cmdArgs => ['-Lav',
|
|
'-e', 'ssh',
|
|
'--include=*.dmg',
|
|
'--include=*.exe',
|
|
'--include=*.tar.'.$linuxExtension,
|
|
'--exclude=*',
|
|
$stagingServer . ':/home/ftp/pub/' . $product
|
|
. '/nightly/' . $oldVersion . '-candidates/build'
|
|
. $oldBuild . '/*',
|
|
$product . '-' . $oldVersion . '-build' . $oldBuild . '/',
|
|
],
|
|
dir => catfile($verifyDirVersion, 'tools', 'release', 'l10n'),
|
|
logFile =>
|
|
catfile($logDir, 'repack_verify-download_' . $oldVersion . '.log'),
|
|
timeout => 3600
|
|
);
|
|
|
|
my $newProduct = $product . '-' . $version . '-' . 'build' . $build;
|
|
my $oldProduct = $product . '-' . $oldVersion . '-' . 'build' . $oldBuild;
|
|
|
|
foreach my $product ($newProduct, $oldProduct) {
|
|
MkdirWithPath(dir => catfile($verifyDirVersion, 'l10n', $product))
|
|
or die("Cannot mkdir $verifyDirVersion/$product: $!");
|
|
|
|
$this->Shell(
|
|
cmd => './verify_l10n.sh',
|
|
cmdArgs => [$product],
|
|
dir => catfile($verifyDirVersion, 'tools', 'release', 'l10n'),
|
|
logFile => catfile($logDir,
|
|
'repack_' . $product . '-l10n_verification.log'),
|
|
);
|
|
|
|
|
|
foreach my $rule ('^FAIL', '^Binary') {
|
|
eval {
|
|
$this->CheckLog(
|
|
log => $logDir .
|
|
'/repack_' . $product . '-l10n_verification.log',
|
|
notAllowed => $rule,
|
|
);
|
|
};
|
|
if ($@) {
|
|
$this->Log('msg' =>
|
|
"WARN: $rule found in l10n metadiff output!");
|
|
}
|
|
}
|
|
|
|
$this->CheckLog(
|
|
log => $logDir . '/repack_' . $product . '-l10n_verification.log',
|
|
notAllowed => '^Only',
|
|
);
|
|
}
|
|
|
|
# generate metadiff
|
|
$this->Shell(
|
|
cmd => 'diff',
|
|
cmdArgs => ['-r',
|
|
catfile($newProduct, 'diffs'),
|
|
catfile($oldProduct, 'diffs'),
|
|
],
|
|
ignoreExitValue => 1,
|
|
dir => catfile($verifyDirVersion, 'tools', 'release', 'l10n'),
|
|
logFile => catfile($logDir, 'repack_metadiff-l10n_verification.log'),
|
|
);
|
|
}
|
|
|
|
sub Push {
|
|
my $this = shift;
|
|
|
|
my $config = new Bootstrap::Config();
|
|
my $productTag = $config->Get(var => 'productTag');
|
|
my $build = $config->Get(var => 'build');
|
|
my $logDir = $config->Get(sysvar => 'logDir');
|
|
my $stagingUser = $config->Get(var => 'stagingUser');
|
|
my $stagingServer = $config->Get(var => 'stagingServer');
|
|
|
|
my $buildTag = $productTag . '_BUILD' . $build;
|
|
my $buildLog = catfile($logDir, 'repack_' . $buildTag . '-build-l10n.log');
|
|
my $pushLog = catfile($logDir, 'repack_' . $buildTag . '-push-l10n.log');
|
|
|
|
my $logParser = new MozBuild::TinderLogParse(
|
|
logFile => $buildLog,
|
|
);
|
|
my $pushDir = $logParser->GetPushDir();
|
|
if (! defined($pushDir)) {
|
|
die("No pushDir found in $buildLog");
|
|
}
|
|
$pushDir =~ s!^http://ftp.mozilla.org/pub/mozilla.org!/home/ftp/pub!;
|
|
|
|
my $candidateDir = $config->GetFtpCandidateDir(bitsUnsigned => 1);
|
|
$this->CreateCandidatesDir();
|
|
|
|
my $osFileMatch = $config->SystemInfo(var => 'osname');
|
|
# TODO - use a more generic function for this kind of remapping
|
|
if ($osFileMatch eq 'win32') {
|
|
$osFileMatch = 'win';
|
|
} elsif ($osFileMatch eq 'macosx') {
|
|
$osFileMatch = 'mac';
|
|
}
|
|
|
|
$this->Shell(
|
|
cmd => 'ssh',
|
|
cmdArgs => ['-2', '-l', $stagingUser, $stagingServer,
|
|
'rsync', '-av',
|
|
'--include=*' . $osFileMatch . '*',
|
|
'--include=*.xpi',
|
|
'--exclude=*',
|
|
$pushDir, $candidateDir],
|
|
logFile => $pushLog,
|
|
);
|
|
}
|
|
|
|
sub Announce {
|
|
my $this = shift;
|
|
|
|
my $config = new Bootstrap::Config();
|
|
my $product = $config->Get(var => 'product');
|
|
my $productTag = $config->Get(var => 'productTag');
|
|
my $version = $config->GetVersion(longName => 0);
|
|
my $build = $config->Get(var => 'build');
|
|
my $logDir = $config->Get(sysvar => 'logDir');
|
|
|
|
my $buildTag = $productTag . '_BUILD' . $build;
|
|
my $buildLog = catfile($logDir, 'repack_' . $buildTag . '-build-l10n.log');
|
|
|
|
my $logParser = new MozBuild::TinderLogParse(
|
|
logFile => $buildLog,
|
|
);
|
|
my $buildID = $logParser->GetBuildID();
|
|
my $pushDir = $logParser->GetPushDir();
|
|
|
|
if (! defined($pushDir)) {
|
|
die("No pushDir found in $buildLog");
|
|
}
|
|
|
|
$this->SendAnnouncement(
|
|
subject => "$product $version l10n repack step finished",
|
|
message => "$product $version l10n builds were copied to the candidates directory.\nPush Dir was $pushDir",
|
|
);
|
|
}
|
|
|
|
1;
|